S
stevewy
I'm just trying to work out (if what I want is at all possible), a
regular expression that will search for and select (in a text editor
that supports regexps, like Notepad++) the word "onclick", then any
text at all, up to and including ">".
I thought
onclick*\>
would work, but it doesn't.
Basically it needs to Find the word onclick, then select all the text
up to >. Sort of like an extended search.
The wildcard "*" symbol select "the previous token", not "all and
anything" like I am used to.
What am I doing wrong?
Steve
regular expression that will search for and select (in a text editor
that supports regexps, like Notepad++) the word "onclick", then any
text at all, up to and including ">".
I thought
onclick*\>
would work, but it doesn't.
Basically it needs to Find the word onclick, then select all the text
up to >. Sort of like an extended search.
The wildcard "*" symbol select "the previous token", not "all and
anything" like I am used to.
What am I doing wrong?
Steve