V
Viraptor
Hello
How can I parse a string, which format I know, to elements. (in c#, not
using a regexp)
For example - it will be "number text = number text". Is there a faster
way to do it than getting string from start to IndexOf(" "), parsing to
number, getting next part to the next space, .....
I'm looking for something like c's sscanf
How can I parse a string, which format I know, to elements. (in c#, not
using a regexp)
For example - it will be "number text = number text". Is there a faster
way to do it than getting string from start to IndexOf(" "), parsing to
number, getting next part to the next space, .....
I'm looking for something like c's sscanf