Match any sequence of one or more a characters : One or More : Regular Expressions MySQL TUTORIALS


MySQL TUTORIALS » Regular Expressions » One or More »

 

Match any sequence of one or more a characters


mysql>
mysql> SELECT 'ABC' REGEXP '^Aa+';
+---------------------+
'ABC' REGEXP '^Aa+' |
+---------------------+
|                   |
+---------------------+
row in set (0.00 sec)

mysql>
mysql> SELECT 'ABC' REGEXP '^ABa+';
+----------------------+
'ABC' REGEXP '^ABa+' |
+----------------------+
|                    |
+----------------------+
row in set (0.00 sec)

mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Regular Expressions
» One or More