Re: [fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-07 Thread ik
On Thu, Jan 6, 2011 at 18:05, Gene Buckle wrote: > On Thu, 6 Jan 2011, Howard Page-Clark wrote: > > On 06/1/11 2:49, Gene Buckle wrote: >> >>> On Wed, 5 Jan 2011, leledumbo wrote: >>> >>> If you want something fast, pyacc and plex distributed with fpc can be an option. But I sugge

Re: [fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-06 Thread Gene Buckle
On Thu, 6 Jan 2011, Howard Page-Clark wrote: On 06/1/11 2:49, Gene Buckle wrote: On Wed, 5 Jan 2011, leledumbo wrote: If you want something fast, pyacc and plex distributed with fpc can be an option. But I suggest writing your own since that way you'll have a full control of its features.

Re: [fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-06 Thread Howard Page-Clark
On 06/1/11 2:49, Gene Buckle wrote: On Wed, 5 Jan 2011, leledumbo wrote: If you want something fast, pyacc and plex distributed with fpc can be an option. But I suggest writing your own since that way you'll have a full control of its features. Is there an fpc version of TIniFile? g. look

Re: [fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-06 Thread Gene Buckle
On Wed, 5 Jan 2011, leledumbo wrote: If you want something fast, pyacc and plex distributed with fpc can be an option. But I suggest writing your own since that way you'll have a full control of its features. Is there an fpc version of TIniFile? g. -- Proud owner of F-15C 80-0007 http://www

Re: [fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread Jorge Aldo G. de F. Junior
i have a small parser called PON Compiler that stores objects into a file using the following syntax : Instance Of ( ) Begin etc End. properties can itself point to instances wich can be declared in place. with this setup and a bunch of RTTI etc you can have a very rich config file. 2011/1/

[fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread leledumbo
If you want something fast, pyacc and plex distributed with fpc can be an option. But I suggest writing your own since that way you'll have a full control of its features. -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/complex-ini-like-syntax-parser-tp3329069p3

[fpc-pascal] Re: [Lazarus] complex ini like syntax parser

2011-01-05 Thread ik
2011/1/5 Zaher Dirkey > 2011/1/5 ik > > 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 > > http: