The Three Most Basic Regular Expressions
Tuesday June 12, 2007
The three most basic regular expressions are:
- "^Abc" which searches for something at the beginning of the string
- "Abc$" which searches for something at the end of a string
- "Abc" which searches for anywhere within the string


Comments
You may want to check the first bullet point here??
You might want to preface the article with an example of PHP or MySQL code, so the reader knows what this applies to.