464

我想在我的字符串中有一个数字后的百分号。像这样:75%。

我怎样才能做到这一点?我试过:

[NSString stringWithFormat:@"%d\%", someDigit];

但这对我不起作用。

4

7 回答 7

952

百分号NSString格式的代码是%%. NSLog()对于和printf()格式也是如此。

于 2009-04-11T07:48:36.317 回答
140

百分号的转义码是“%%”,所以你的代码看起来像这样

[NSString stringWithFormat:@"%d%%", someDigit];

此外,所有其他格式说明符都可以在概念字符串文章中找到

于 2009-04-11T08:03:41.350 回答
17

如果这在某些情况下有帮助,则可以使用 unicode 字符:

NSLog(@"Test percentage \uFF05");
于 2013-02-12T15:06:07.073 回答
8

接受的答案不适用于 UILocalNotification。出于某种原因,%%%%(4 个百分号)或 unicode 字符 ' \uFF05' 仅适用于此。

回顾一下,在格式化字符串时,您可以使用%%. 但是,如果您的字符串是 UILocalNotification 的一部分,请使用%%%%\uFF05

于 2015-01-15T19:52:09.230 回答
6

似乎如果%%后面跟着 a %@NSString会去一些奇怪的代码试试这个,这对我有用

NSString *str = [NSString stringWithFormat:@"%@%@%@", @"%%", 
                 [textfield text], @"%%"]; 
于 2013-06-13T03:14:03.297 回答
4

使用以下代码。

 NSString *searchText = @"Bhupi"
 NSString *formatedSearchText = [NSString stringWithFormat:@"%%%@%%",searchText];

将输出:%Bhupi%

于 2013-04-14T11:56:00.670 回答
0

iOS 9.2.1、Xcode 7.2.1、ARC 已启用

您始终可以在附加的字符串中单独附加 '%' 而无需任何其他格式说明符,就像这样......

int test = 10;

NSString *stringTest = [NSString stringWithFormat:@"%d", test];
stringTest = [stringTest stringByAppendingString:@"%"];
NSLog(@"%@", stringTest);

iOS7.0+

要将答案扩展到可能导致您发生冲突的其他字符,您可以选择使用:

- (NSString *)stringByAddingPercentEncodingWithAllowedCharacters:(NSCharacterSet *)allowedCharacters

一步一步写出来是这样的:

int test = 10;

NSString *stringTest = [NSString stringWithFormat:@"%d", test];
stringTest = [[stringTest stringByAppendingString:@"%"] 
             stringByAddingPercentEncodingWithAllowedCharacters:
             [NSCharacterSet alphanumericCharacterSet]];
stringTest = [stringTest stringByRemovingPercentEncoding];

NSLog(@"percent value of test: %@", stringTest);

或简写:

NSLog(@"percent value of test: %@", [[[[NSString stringWithFormat:@"%d", test] 
stringByAppendingString:@"%"] stringByAddingPercentEncodingWithAllowedCharacters:
[NSCharacterSet alphanumericCharacterSet]] stringByRemovingPercentEncoding]);

感谢所有原始贡献者。希望这可以帮助。干杯!

于 2016-02-09T17:30:05.007 回答