Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我有一个数字94777777777,我想做的是删除 94 并仅获取 777777777 作为字符串。我如何在 ios 中做到这一点
94777777777
谢谢
NSString *output = [yourString substringFromIndex:2];