I'm currently writing a wavefront OBJ loader in Objective-C and I'm trying to figure out how to parse data from an NSString in a similar manner to the sscanf() function in C.
OBJ files define faces in x,y,z triplets of vertices, texture coordinates, and normals such as:
f 1.43//2.43 1.11//2.33 3.14//0.009
I'm not concerned about texture coordinates at the current moment. In C, an easy way to parse this line would be a statement such as:
sscanf(buf, "f %d//%d %d//%d %d//%d", &temp[0], &temp[1], &temp[2], &temp[3], &temp[4], &temp[5]);
Obviously, NSStrings can't be used in a sscanf() without first converting them to a C-style string, but I'm wondering if there's a more elegant way to performing this without doing such a conversion.
To go from an NSString to an C-String (char *), use
Alternatively,
Provide access to the sscanf() function.
To go the other way, use
Or
From a pure ObjC standpoint, NSScanner provides the
-scanInteger
or-scanFloat
methods to pull ints and floats out of a string.The NSScanner class can parse numbers in strings, although it can't be used as a drop-in replacement for sscanf.
Edit: here's one way to use it. You can also put the
/
into the list of characters to be skipped.