Click here to Skip to main content
15,879,326 members

Comments by Steve Vink (Top 2 by date)

Steve Vink 19-Mar-13 10:50am View    
Sorry, I should have said. I get...

1. HREF='page1.xml' Go to Page 1
2. HREF='page2.xml' Go to Page 2
3. HREF='page3.xml' Go to Page 3
4. HREF='page4.xml' Go to Page 4
Steve Vink 1-Mar-13 4:20am View    
Thanks Mike. I really struggled to understand the tool, but I have learned lots about regular expressions by dissecting it.
I now understand that the parts in parentheses become groups, and that by removing the parentheses it doesn't retain the details of the match.

There was one change I had to make. The [a-z] needed to be [A-z], as there is the possibility of uppercase in the method names.

Thanks again.