[Lazarus] complex ini like syntax parser

2011-01-05 Thread ik
Hello, I'm looking for a setting parser for something like this: --- snips - [foo](!) bar = 1 baz = fff ; comment ; comment #include file #include = section --- snips Before I'll do this the hard way and write something for myself, is there something like that existed

Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread Zaher Dirkey
2011/1/5 ik ido...@gmail.com Before I'll do this the hard way and write something for myself, is there something like that existed already, or even something that implement part of it, so I could based my code on it instead of writing one for myself ? In project

Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread ik
2011/1/5 Zaher Dirkey parm...@gmail.com 2011/1/5 ik ido...@gmail.com Before I'll do this the hard way and write something for myself, is there something like that existed already, or even something that implement part of it, so I could based my code on it instead of writing one for myself ?

Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread Zaher Dirkey
2011/1/5 ik ido...@gmail.com Thanks Zaher, but I'm looking for a parser to read the keys and values, and not syntax highlighter. Sorry stupid me :P syntax word is confused me. But that file is not just an INI file. You can try lcl\translations.pas UpdateStrings but it is not fit to what

Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread Marco van de Voort
On Wed,Jan 05, 2011 at 06:23:36PM +0200, ik wrote: I'm looking for a setting parser for something like this: --- snips - [foo](!) bar = 1 baz = fff ; comment ; comment #include file #include = section --- snips Before I'll do this the hard way and write