Return to Snippet

Revision: 24253
at January 13, 2011 11:59 by supermauerbros


Updated Code
</?[A-Za-z]+[^>]*>[A-Za-z]+</?[A-Za-z]+[^>]*>

Finds <tag>Word</tag>


</?[A-Za-z]+[^>]*>[A-Za-z/ ]+</?[A-Za-z]+[^>]*>

Finds <tag>Words with spaces</tag>

OLD AND BUSTED:(</?[A-Za-z]+[^>]*>)([.:_?/=A-Za-z/ ]+</?)([A-Za-z]+[^>]*>)

(<[^>]+>)((?:[a-z].*?[a-z]+))(<[^>]+>)

Finds <tag>Words with spaces, periods, colons, ?marks and = signs</tag> 
They are grouped as $1, $2, $3

Revision: 24252
at February 26, 2010 13:59 by supermauerbros


Updated Code
</?[A-Za-z]+[^>]*>[A-Za-z]+</?[A-Za-z]+[^>]*>

Finds <tag>Word</tag>


</?[A-Za-z]+[^>]*>[A-Za-z/ ]+</?[A-Za-z]+[^>]*>

Finds <tag>Words with spaces</tag>

(</?[A-Za-z]+[^>]*>)([.:_?/=A-Za-z/ ]+</?)([A-Za-z]+[^>]*>)

Finds <tag>Words with spaces, periods, colons, ?marks and = signs</tag> 
They are grouped as $1, $2, $3

Revision: 24251
at February 24, 2010 10:58 by supermauerbros


Updated Code
</?[A-Za-z]+[^>]*>[A-Za-z]+</?[A-Za-z]+[^>]*>

Finds <tag>Word</tag>


</?[A-Za-z]+[^>]*>[A-Za-z/ ]+</?[A-Za-z]+[^>]*>

Finds <tag>Words with spaces</tag>

Revision: 24250
at February 24, 2010 10:55 by supermauerbros


Initial Code
</?[A-Za-z]+[^>]*>[A-Za-z]+</?[A-Za-z]+[^>]*>

Initial URL


Initial Description


Initial Title
Dreamweaver Find A-Z Text  Regex

Initial Tags
regex

Initial Language
Regular Expression