Scanning a string for values

Operates in the same way as the standard scanf function.

orxSTRING resolutionString = "640x480";
 
int width = 0;
int height = 0;
 
orxString_Scan(resolutionString, "%dx%d", &width, &height);