I can write a regular expression to match ANY number of digits between 6 and 25 ...
^[[:digit:]]{6,25}$
but how would I write a regular expression to match either 6 digits or 25 digits, but no number in between?
^([[:digit:]]{6}|[[:digit:]]{25})$
(The regular expressions in this example are Tcl and PHP/ereg types. use \d instead of [[:digit:]] for PHP/preg and Perl.)
You may wonder why I want this. A client with 6 digit or 25 digit part numbers, a year number that can be 2 or 4 digits ... (written 2008-04-16 19:06:00)
Associated topics are indexed under
H107 - String Handling in PHP [2629] Curly braces within double quoted strings in PHP - (2010-02-09)
[2238] Handling nasty characters - Perl, PHP, Python, Tcl, Lua - (2009-06-14)
[2165] Making Regular Expressions easy to read and maintain - (2009-05-10)
[2046] Finding variations on a surname - (2009-02-17)
[1799] Regular Expressions in PHP - (2008-09-16)
[1603] Do not SHOUT and do not whisper - (2008-04-06)
[1533] Short and sweet and sticky - PHP form input - (2008-02-06)
[1372] A taster PHP expression ... - (2007-09-30)
[1336] Ignore case in Regular Expression - (2007-09-08)
[1195] Regular Express Primer - (2007-05-20)
[1058] PHP Regular expression to extrtact link and text - (2007-01-31)
[1008] Date conversion - PHP - (2006-12-26)
[728] Looking ahead and behind in a Regular Expression - (2006-05-22)
[716] Evaluating arithmetic expressions in configuration files - (2006-05-10)
[642] How similar are two words - (2006-03-11)
[608] Don't expose your regular expressions - (2006-02-15)
[589] Robust PHP user inputs - (2006-02-03)
[574] PHP - dividing a string up into pieces - (2006-01-23)
[560] The fencepost problem - (2006-01-10)
[558] Converting between acres and hectares - (2006-01-08)
[493] Running a Perl script within a PHP page - (2005-11-12)
[463] Splitting the difference - (2005-10-13)
[422] PHP Magic Quotes - (2005-08-22)
[337] the array returned by preg_match_all - (2005-06-06)
[54] PHP and natural sorting - (2004-09-19)
[31] Here documents - (2004-08-28)
Q803 - Object Orientation and General technical topics - Regular Expressions - Extra Elements [1860] Seven new intermediate Perl examples - (2008-10-30)
[1735] Finding words and work boundaries (MySQL, Perl, PHP) - (2008-08-03)
[1601] Replacing the last comma with an and - (2008-04-04)
[943] Matching within multiline strings, and ignoring case in regular expressions - (2006-11-25)
T247 - Tcl/Tk - Advanced Regular Expressions [1412] Sparse and Greedy matching - Tcl 8.4 - (2007-10-27)
[1410] Tcl / regsub - changing a string and using interesting bits - (2007-10-27)
[1305] Regular expressions made easy - building from components - (2007-08-16)
Some other Articles
Steam Engines at BressinghamNot daring to be an anorakPHP training courses every monthWhen an array is not an arrayRegular expression for 6 digits OR 25 digitsComfy Chair - Floating Harbour, BristolGauging point at entrance to Bristols Floating HarbourPHP course dot co, dot ukChew Valley LakesUnderlining in Perl and Python - the x and * operator in use