删除 NSString 左侧的空格
我只需要删除 NSString 左侧的空白我的意思是
只有 "这是美好的一天"
如果我有 " 这是美好的一天"
我将 剩下的空间只有
任何建议请
I need to remove the white space only from the left of NSString I mean
if I have " This is a good day"
I will have "This is a good day"
only the left spaces only
any suggestion please
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
只需使用
它即可删除左侧和右侧的所有额外空间,但不会删除中间的所有额外空间
,并删除空白和
\n
使用Just use
it will remove all extra space from left as well as right but not from middle
and to remove both white space and
\n
use使用下面的方法从
NSString
中删除白色和换行字符。Use below to remove white and new line chatacter from your
NSString
.仅左侧空白
ONLY the left whitespaces
这是我在遇到同样问题时提出的解决方案:
Here's a solution I came up with when facing the same issue:
对于仅修剪到左侧的解决方案是在字符串右侧添加一个虚拟字符,修剪字符串,然后将其删除。
For trimming only to the left a solution is to add a dummy character to the right of your string, trim the string, and then remove it.
然后您可以将 T 添加到字符串中,如下所示
You can then append T in the string as