vote up 4 vote down star
1

I used to code in C language in the past and I found the scanf function very usefull. 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 uncomplete.

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

flag

4 Answers

vote up 3 vote down check

Since the files are "semi-structured" can't you use a combination of ReadLine and Try.Parse() or Regex to parse your data?

link|flag
Sure I could :) However, scanf is so confortable and handy compared to regex. I am pretty sure it worth the effort. – ControlBreak Jan 23 at 7:57
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 at 7:59
Thank you for the hint – ControlBreak Jan 23 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 at 10:46
vote up 2 vote down

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.

link|flag
Ow, I have no clue about how to use directly C runtime libraries. I'd rather avoid it and stick to regexes instead. – ControlBreak Jan 23 at 8:18
vote up -1 vote down

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

link|flag
Yes, this is a mandatory condition to use ReadLine as Mitch Wheat suggested. – ControlBreak Jan 23 at 8:17
vote up 1 vote down

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());
}
link|flag

Your Answer

Get an OpenID
or

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