如何检查 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
谢谢您的帮助 :)