10 Jan
2005
10 Jan
'05
1:01 p.m.
I want to do a search for a regular expression for '$':Matches the end of the string. e.g.: 'script$' should select vbscript as well as javascript. How can I do this?
I'm not entirely clear on what you are trying to do, but how about: (?:vbscript|javascript)$ John.