Hi,
I'm having an NSString like this:
music that rocks.mp3 e99a65fb
The problem is that between the filename (musicthatrocks.mp3
) and the CRC32 checksum (e99a65fb
) there could be many more spaces then one. How can I split the line into an array?
I thought of using componentsSeparatedByString, but my problem is that the filename can also contain spaces.
Thanks in advance.