跳到主内容

搜索

搜索

Truncate if first 10characters in text string are digits

评论

2 条评论

  • Avatar
    Peter Thane

    If it is just alpha characters you want to print you could use the Truncation>Character Filter> Alpha only option instead

    0
  • Avatar
    Steven Hou

    Nevermind.. I solved it :)

     

    If IsNumeric(Left(Format.NamedSubStrings("BlanksH").Value,10)) Then
       BlanksH = Mid(Format.NamedSubStrings("BlanksH").Value, 11)
    End If

    1

请先登录再写评论。