G Girish Bharadwaj Oct 21, 2003 #2 Mark said: Hi. What is the best replacement for sscanf? Thanks, Mark Click to expand... A combination of different Parse() methods + Console.ReadLine() should be good to read the data. If the data is separated by a known char, you can probably use String.Split() as well. Or, Use RegEx and write your own scanner.
Mark said: Hi. What is the best replacement for sscanf? Thanks, Mark Click to expand... A combination of different Parse() methods + Console.ReadLine() should be good to read the data. If the data is separated by a known char, you can probably use String.Split() as well. Or, Use RegEx and write your own scanner.
M Mark Oliver Oct 23, 2003 #3 Hi, String.Split() works, but I was hoping for a inverse of String.Format that works in the same way as sscanf inverses sprintf. Thanks, Mark
Hi, String.Split() works, but I was hoping for a inverse of String.Format that works in the same way as sscanf inverses sprintf. Thanks, Mark