View Single Post
  #9 (permalink)  
Old 09-24-2007, 10:55 PM
prasath prasath is offline
D-Web Sr.Programmer
 
Join Date: Jul 2007
Location: Chennai
Posts: 173
prasath is on a distinguished road
Default Re: Regular expression tips & tricks

Hi pals,
Another regular expression

(abc)* Match zero or more instances of the sequence abc

Example

SELECT 'pi' REGEXP '^(pi)*$';
Reply With Quote