What patterns are always present and how do you want to process it?
E.g do you always want all text after the first space?
Or do you want to strip out all non numeric characters etc?
If you want to split on a separator you’ll likely use a lambda similar to the one here:
Key parts being sscanf.
1 Like