0

我这里有一个奇怪的问题。当你使用这个:

ContactsContract.CommonDataKinds.Phone.NUMBER

它返回 0123 4567890(或类似的东西)。

现在,这些数字之间的空格正在导致 Web 服务出现问题,所以我被要求修剪它。我不能。我已经尝试过 .trim() 函数,但它似乎不起作用。

我能想到的唯一原因是这不完全是一个空间。但是我该如何检查?如果我将它从 logcat 复制粘贴到一个文本文件,它会说它是一个空格(ASCII 32)。但如果是,为什么不 .trim() 删除它?

4

1 回答 1

1

trim() function doesn't work like that..it only removes spaces from the start and at the end..you can always replace them with empty string

于 2013-01-21T11:42:28.407 回答