Regex question
Hi,
I posted a thread a while ago and cannot find it
If this a duplicate I apologize.
I have been getting started with regex expressions using a tutorial I found on these forums.
Finding number sequences work fine.
Number and alpha give me a problem.
Trying to get a match for:
<body class="content" id="uiW9njI8qPGOt6Hp7wdrNu5">
with variable alpha and numerics.
Tried
<body class="content" id="[a-z][A-Z][0-9]">
<body class="content" id="[a-zA-Z0-9]">
<body class="content" id="\w">
None of witch found a match.
What am I missing?
Thanks
Phil
|