本文介绍了NSString stringWithFormat 带制表符而不是空格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您可以看到我在字符串后添加了 40 个空格,但它从索引 0 开始.我可以用制表符 "\t" 而不是空格 " " 来做同样的事情吗?
You can see that I add 40 spaces after my string but it starts at index 0.Can I do the same thing with tab "\t" instead of spaces " "?
NSString *firstString = [[NSString stringWithFormat:@"%@",stringToWrite] stringByPaddingToLength:40 withString:@" " startingAtIndex:0];
推荐答案
是 @"\t"
将放置制表符而不是空格.
此外,您的线路可能会更简单一些:
Yes @"\t"
will put tab instead of spaces.
Also, your line could be a bit more simple :
NSString *firstString = [stringToWrite stringByPaddingToLength:40
withString:@" "
startingAtIndex:0];
这篇关于NSString stringWithFormat 带制表符而不是空格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!