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.
我有一个由字节“1”分隔的字符串。现在我想拆分这个字符串如何做到这一点。
[str componentsSeparatedByString:@" "]
工作正常,但仅适用于字符串分隔符而不适用于字节。
请帮忙
如果您谈论的是由十六进制值为 0x01 的 ASCII 字符分隔的字符串,那么您可以执行以下操作:
NSArray *substrings = [str componentsSeparatedByString:@"\u0001"];
该序列\u0001被转换为十六进制代码 1 的 Unicode 字符。
\u0001