Re: C regex equiv to Python implementation?

2006-01-08 Thread Jorgen Grahn
On 6 Jan 2006 11:24:14 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Ganesan, > > I'm trying to stay portable between Windows and Linux. My app will run > on Linux when deployed. But we do a lot of simulation on Windows > because of better dev tools available on Windows. (Lots of people se

Re: C regex equiv to Python implementation?

2006-01-07 Thread techiepundit
Ganesan, I'm trying to stay portable between Windows and Linux. My app will run on Linux when deployed. But we do a lot of simulation on Windows because of better dev tools available on Windows. So I really want a regular expression implementation that'll compile under MS VS 2003 C++ and also und

Re: C regex equiv to Python implementation?

2006-01-06 Thread Ganesan Rajagopal
> techiepundit <[EMAIL PROTECTED]> writes: > I've been writing code in Python to prototype part of an application. > I've used the re regular expression pattern matcher. Now I have to take > what I've written and recode it in C to fit in an existing C app. What platform? Linux includes a reg

C regex equiv to Python implementation?

2006-01-06 Thread techiepundit
I've been writing code in Python to prototype part of an application. I've used the re regular expression pattern matcher. Now I have to take what I've written and recode it in C to fit in an existing C app. Anyway, is there a way to use the re regular expression evaluator in C? Is it written in C