IOS:nsstring留一些空格
<p><p>我有一个特殊的问题:</p>
<p>在 NSSTring 中,我有这个值“abcdef ghil”
我想检查第一个字符是否为空格并将其删除(使用 stringbyreplacing ...?)
在其他空间(从“f”到“g”)我想插入一个“-”</p>
<p>你能帮帮我吗?</p>
<p>如果有帮助的话;我从文本字段中获取此字符串...</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>以下内容将满足您的要求,但需要注意的是,它将修剪尾随空格以及前导空格,而不仅仅是单个前导或尾随空格字符。 </p>
<pre><code>NSString *original = @" abcdef ghil";
NSString *trimmed = ];
NSString *final = [trimmed stringByReplacingOccurrencesOfString:@" "
withString:@"-"];
</code></pre>
<p>如果您只想删除前导空格,那么您应该查看之前的问题:<a href="https://stackoverflow.com/questions/3200521/cocoa-trim-all-leading-whitespace-from-nsstring" rel="noreferrer noopener nofollow">Cocoa - Trim all leading whitespace from NSString</a> </p>
<p><strong>更新</strong>:如果您真的只想删除字符串开头的一个空格,那么以下内容应该适合您:</p>
<pre><code>NSString *original = @"abcdef ghil";
NSString *trimmed = [original stringByReplacingOccurrencesOfString:@" "
withString:@""
options:0
range:NSMakeRange(0, 1)];
NSString *final = [trimmed stringByReplacingOccurrencesOfString:@" "
withString:@"-"];
</code></pre></p>
<p style="font-size: 20px;">关于IOS:nsstring留一些空格,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10267378/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10267378/
</a>
</p>
页:
[1]