====== Scanning a string for values ====== Operates in the same way as the standard [[https://www.dummies.com/programming/c/basics-of-the-scanf-function-in-c-programming|scanf]] function. orxSTRING resolutionString = "640x480"; int width = 0; int height = 0; orxString_Scan(resolutionString, "%dx%d", &width, &height);