Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used to code in C language in the past and I found the scanf function very useful. Unfortunately, there is no equivalent in C#.

I am using using it to parse semi-structured text files.

I found an interresting example of scanf implementation here. Unfortunately, it looks old and incomplete.

Does anyone know a scanf C# implementation ? Or at least something that would work as a reversed string.Format?

share|improve this question

6 Answers

up vote 2 down vote accepted

If regular expressions aren't working for you, I've just posted a sscanf() replacement for .NET. The code can be viewed and downloaded at http://www.blackbeltcoder.com/Articles/strings/a-sscanf-replacement-for-net.

share|improve this answer

Since the files are "semi-structured" can't you use a combination of ReadLine() and TryParse() methods, or the Regex class to parse your data?

share|improve this answer
Sure I could :) However, scanf is so confortable and handy compared to regex. I am pretty sure it worth the effort. – Laurent Jan 23 '09 at 7:57
1  
Regex is not so bad. Download one of the free tools (like Expresso) and regexes are mu7ch easier to create and use. – Mitch Wheat Jan 23 '09 at 7:59
Thank you for the hint – Laurent Jan 23 '09 at 8:04
Personally I hate scanf(): regexes give you so much more control & flexibility, it's worth learning the basics at least. I learned regexes in my Perl programming days & loved them, so I was overjoyed to find Regex in .NET. – AAT Sep 11 '09 at 10:46
1  
I am currently using a SScanf() open source in this link... try it out blackbeltcoder.com/Articles/strings/… – Dhanasekar Oct 31 '12 at 12:20

You can use scanf directly from C runtime libraries, but this can be difficult if you need to run it with different parameters count. I recommend you to regular expressions for you task or describe that task here, maybe there is another ways.

share|improve this answer
Ow, I have no clue about how to use directly C runtime libraries. I'd rather avoid it and stick to regexes instead. – Laurent Jan 23 '09 at 8:18

There is good reason why a scanf like function is missing from c#. It's very prone to error, and not flexible. Using Regex is much more flexible and powerful.

Another benefit is that it's easier to reuse throughout your code if you need to parse the same thing in different parts of the code.

share|improve this answer

I think you want the C# library functions either Parse or Convert.

// here's an example of getting the hex value from a command line 
// program.exe 0x00080000

static void Main(string[] args)
{
    int value = Convert.ToInt32(args[1].Substring(2), 16);
    Console.Out.WriteLine("Value is: " + value.ToString());
}
share|improve this answer

You could use System.IO.FileStream, and System.IO.StreamReader, and then parse from there.

share|improve this answer
Yes, this is a mandatory condition to use ReadLine as Mitch Wheat suggested. – Laurent Jan 23 '09 at 8:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.