如何从 iPhone 中的 NSString 中删除空格

发布于 2024-11-18 17:19:45 字数 95 浏览 1 评论 0原文

我从服务器 http://www.google.com 获取一个网址,但是由于它们之间有空格,它无法打开,请让我知道如何删除它们之间的空格,以便它应该在 safari 中打开。

i am getting one url from the server http: / /www.google.com, however due to space in between them it is not opening, please let me know how to remove the space in between them, so that it should open in safari.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

秋日私语 2024-11-25 17:19:46

要删除空格,请使用以下代码,

str = [str stringByReplacingOccurrencesOfString:@" " withString:@"%20"];

For remove empty spaces, please use below code,

str = [str stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
墨小墨 2024-11-25 17:19:45

要删除空白区域:

str = [str stringByReplacingOccurrencesOfString:@" " withString:@""];

使用以下命令在文本视图中检测站点或电话号码。

textview.dataDetectorTypes = UIDataDetectorTypeAll;

To remove empty space:

str = [str stringByReplacingOccurrencesOfString:@" " withString:@""];

Use following to detect site or phone number in text view.

textview.dataDetectorTypes = UIDataDetectorTypeAll;
坏尐絯 2024-11-25 17:19:45
NSString *cleanString = [dirtyString stringByReplacingOccurrencesOfString:@"http: //" withString:@"http://"];

不过,我想知道为什么你首先会得到这个奇怪的字符串。

NSString *cleanString = [dirtyString stringByReplacingOccurrencesOfString:@"http: //" withString:@"http://"];

I'd wonder why you get this odd string in the first place, though.

玉环 2024-11-25 17:19:45
NSString *str = @"hel lo";

[str stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
NSString *str = @"hel lo";

[str stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文