当我试图利用地势时,我会取得非常远大的结果。 删除特性的三边。
I want to remove leading and trailing periods (...) from strings, but my code only removes trailing characters for some reason. Microsoft s documentation says that the string.trim(char array) method should trim from the start and end of the string. http://msdn.microsoft.com/en-us/library/zke31k1x.aspx
My code to trim the string is...
mystring=mystring.trim(".")
如果投入为“2342............”,则将其缩短为“2342”,但如果投入为“2342”,产出仍为“2342”。
我尝试确定一个具有1个成员(即“......”)的特性阵列,但我也得出同样的结果。
我也尝试了我方言的开端,但是,它要么没有发挥作用。
我非常混淆了我为什么会忘记这种行为。
EDITED/SOLVED: mystring included two different characters that represent dots (.)
神秘的特性之一是三个方面,作为斜体(这三个方面合在一起被编码为单一特性,价值为133)。 另一段是简单的时期(价值46)。
解决了问题:
mystring=mystring.Trim(Chr(133)) removes ellipsis
mystring=mystring.Trim(Chr(46)) removes periods