Help on rexexp

2002-03-21 Thread HORA/Lionnel_FERRATON
Hello, I want to take a text beetween 2 words (say START and END). Ex : START blabla blabla blabla END I use the following rexexp %SETPATTREGEXP=(?ism)(.*)(START)(.*)(END)(.*) All is fine if i have only one END in my text but if thers is two or more, i have all the text beetween START and

Re: Help on rexexp

2002-03-21 Thread Markus Gloede
Hi, HORA/Lionnel_FERRATON wrote: I want to take a text beetween 2 words (say START and END). Ex : START blabla blabla blabla END I use the following rexexp %SETPATTREGEXP=(?ism)(.*)(START)(.*)(END)(.*) All is fine if i have only one END in my text but if thers is two or more, i have

Re: Help on rexexp

2002-03-21 Thread Dirk Heiser
Hi HORA/Lionnel_FERRATON, On Thu, 21 Mar 2002 16:53:40 +0100, you wrote: I want to take a text beetween 2 words (say START and END). %SETPATTREGEXP=(?ism)(.*)(START)(.*)(END)(.*) All is fine if i have only one END in my text but if thers is two or more, i have all the text beetween START

Re[2]: Help on rexexp

2002-03-21 Thread HORA/Lionnel_FERRATON
Bonjour Dirk, Le jeudi 21 mars 2002 à 17:06:18, vous écriviez : DH Try DH (?ism)(.*)(START)(.*?)(END)(.*) DH ^ Perfect, work fine for my needs. Thks Current Ver: 1.53d FAQ: http://faq.thebat.dutaint.com