Search/Replace broken in 4.3pre5 ?
Submitted by Monday, 31 July, 2006 - 18:09
on
Hi,
When I enter this regexp :
\b\$[a-z_][a-z0-9_]*\b
Which, in case of php, should search for every variable.
This fails. While \$[a-z_][a-z0-9_]* works.
In fact, it seems that the ^ and $ also fails (was trying to catch (^[ \t]*\S.*$)+ which failed).
Since you changed for java.util.Regexp, and since it allow us to use such expression, I wonder where is the problem?
Another sample :
^\s+$
fails.
When I enter this regexp :
\b\$[a-z_][a-z0-9_]*\b
Which, in case of php, should search for every variable.
This fails. While \$[a-z_][a-z0-9_]* works.
In fact, it seems that the ^ and $ also fails (was trying to catch (^[ \t]*\S.*$)+ which failed).
Since you changed for java.util.Regexp, and since it allow us to use such expression, I wonder where is the problem?
Another sample :
^\s+$
fails.