1

如何检查 48 个字符的字符串长度以及是否要长切所有超过 48 个字符的字符?我想在代码中的 Sym.Description2 上执行此操作(在 IF 和 ELSE 中)。例如 System.Description="Ihavetomanycharactersinthisstringiwanttocutthisnow" 一个 50 个字符的字符串。因此,这应该是新字符串: Sym.Description2 = "Ihavetomanycharactersinthisstringiwanttocutthisn" 正好是 48 个字符。我想在 VBA 中执行此操作。

 'Description(2) field
    If System.Description <> "" Then
        Sym.Description2 = System.Description
    Else
        Sym.Description2 = System.Name
    End If

谢谢您的帮助 :)

4

1 回答 1

0

LEFT(Sym.Description2,48)只返回前 48 个字符,您可以在 VBA 或 Excel 中直接使用它。

于 2013-10-11T09:28:40.407 回答