Re: [Gambas-user] Problem with lazy regexp

2017-04-24 Thread T Lee Davidson
On 04/24/2017 04:25 AM, Tobias Boege wrote: > You can still get greedy quantifiers by using ungreedy ones in your > pattern... LOL. To get ungreedy behavior, use greedy quantifiers. That's logical. Thank you very much, Tobi, for digging that up and updating the documentation. Perhaps, though,

[Gambas-user] shell

2017-04-24 Thread Mike Crean
If I run make from the terminal in a named directory make works as expected. Using Gambas 3.9.2 and run the command, shell "make" while in the named directory I get an error make: *** No targets specified and no makefile found. Stop The same error when I try to shell to a file containing

Re: [Gambas-user] Problem with lazy regexp

2017-04-24 Thread Tobias Boege
On Sun, 23 Apr 2017, T Lee Davidson wrote: > According to http://gambaswiki.org/wiki/doc/pcre , using "*?" in a regular > expression should lazily match 0 or more characters. However, it appears to > act greedily. > > I am trying to do some very simple HTML tag stripping with >