D
darrel
I'm using a regex and want to find a specific tag, like TABLE
this:
(<)(table)
matches this:
<table
<turkey
<amazon
ie, it match < followed by a t or a or b or l or e (at least that's what I
*think* it is doing ;o)
What's the proper way to write out an actual string for matching? I theory,
this should work:
(t)(a)(b)(l)(e)
THe catch is that I'd like to pass 'table' as a string to this. So I'd like
to avoid having to split up the string as an array and then having to build
it like the above.
this:
(<)(table)
matches this:
<table
<turkey
<amazon
ie, it match < followed by a t or a or b or l or e (at least that's what I
*think* it is doing ;o)
What's the proper way to write out an actual string for matching? I theory,
this should work:
(t)(a)(b)(l)(e)
THe catch is that I'd like to pass 'table' as a string to this. So I'd like
to avoid having to split up the string as an array and then having to build
it like the above.