g
- global matchi
- ignore casem
- match over multiple lines\
- special characters to literal and literal characters to special?
- matches zero or one times*
- matches zero or more times+
- matches one or more times{n}
- matches n times{n, m}
- matches at least n times, but not more than m times^
- matches at the start of the line$
- matches at the end of the line\b
- matches at the beginning or the end of a word(?:x)
- matches x not remember the matchx(?=y)
- matches x only if x is followed by yx(?!y)
- matches x only if x is not followed by y\s
- matches whitespace \S
- matches anything but a whitespace \f
- matches a form-feed\n
- matches a linefeed\r
- matches a carriage return\t
- matches a horizontal tab\v
- matches vertical tab\w
- matches any alphanumeric character including the underscore. Equivalent to [A-Za-z0-9_] \W
- matches any non-word character. Equivalent to [^A-Za-z0-9_] .
- matches any character except a newlineFollowing the last post regular expressions on HTML tags. 7 regex on url were created. It should be enough for my use.
http://www.pagecolumn.com/tool/regtest.htm?rp=<\s*h4[^>]*>(.*?)<\s*/\s*h4>&rf=g&me=2&ts=sdfs
http://www.pagecolumn.com/tool/regtest.htm?rp=<\s*h4[^>]*>(.*?)<\s*/\s*h4>&rf=g&me=2&ts=sdfs
http://www.pagecolumn.com/tool/regtest.htm?rp=<\s*h4[^>]*>(.*?)<\s*/\s*h4>&rf=g&me=2&ts=sdfs
http://www.pagecolumn.com/tool/regtest.htm?rp=<\s*h4[^>]*>(.*?)<\s*/\s*h4>&rf=g&me=2&ts=sdfs
http://www.pagecolumn.com/tool/regtest.htm?rp=<\s*h4[^>]*>(.*?)<\s*/\s*h4>&rf=g&me=2&ts=sdfs
http://www.pagecolumn.com/tool/regtest.htm?rp=<\s*h4[^>]*>(.*?)<\s*/\s*h4>&rf=g&me=2&ts=sdfs
http://www.pagecolumn.com/tool/regtest.htm?rp=<\s*h4[^>]*>(.*?)<\s*/\s*h4>&rf=g&me=2&ts=sdfs
Social Bookmark if they are useful.