objective-c right padding

后端 未结 3 536
南方客
南方客 2021-01-27 17:38

hello all hope someone can help with that. I was browsing the net and nothing really seems to make sense :S

so I have a string lets say: \"123\" and I would

3条回答
  •  忘了有多久
    2021-01-27 18:03

    What about the NSString method stringByPaddingToLength:withString:startingAtIndex:.

    NSString* padr(NSString* string, NSUInteger length, NSString *repl)
    {
        return [string stringByPaddingToLength:length withString:repl startingAtIndex:0];
    }
    

提交回复
热议问题