Well, to do what a regular expression does, you would need either a stack of functions for every scenario ( a nightmare ), or a fully verbose equivelant of the same thing
A naieve XML matcher would be something like this if you fully expanded it
regularversage( '<', manyof_until( anynumberof(anycharacter()), '>' ), '>', anynumberof( anybystringnot('</')), manyof_until(anynumberof(anythingnot('>')), '>' ) , '>' ))
and as you can see, that sort of stuff is the most godawful syntax known to man.
'<.+?>.*?</.+?>'
Took a thousand times less to type, and requires only understanding, not time, to read.
I didn't know you could "space" regexes ... if that's the case, this is sort of like programming assembler functions each on just one line.
For very brief rexen, sure, one line them, for the complicated ones, use the ability of your language's string substitution where possible to dissolve chunks of rexex into string based rules.
$year = '[0-9]{4}' ; # years have 4 digits
$month = '[0-1]?[0-9]'; # 0,1, 01, 10, 12, even 13 and 19, but 20 is not valid
$day = '[0-3]?[0-9]'# as with above, 39 is biggest match ( despite not being a possible date )
$date = "$year-$month-$day"; # ISO Date.( albiet a bit lazy, matches the format )
$hour = '[0-2]?[0-9]' ; # 0, 1, 03, 4 , etc.. up to 29
$zero2sixty = '[0-6]?[0-9]'; # really zero to 69, but cant help that.
$time = "$hour:$zero2sixty(:$zero2sixty|)"; # seconds are optional
$datetime = "($date-$time|$date|$time)";
Compounded, would become this mess:
$datetime = "([0-9]{4}-[0-1]?[0-9]-[0-3]?[0-9]-[0-2]?[0-9]:[0-6]?[0-9](:[0-6]?[0-9]|)|[0-9]{4}-[0-1]?[0-9]-[0-3]?[0-9]|[0-2]?[0-9]:[0-6]?[0-9](:[0-6]?[0-9]|)";
:)
Edit Alternative representation in Perl (5.10) regex.
$re = qr/
^
(
(?&date)-(?&time)
|
(?&date)
|
(?&time)
)
$
(?(DEFINE)
(?<year>([0-9]{2})?[0-9]{4})
(?<month>0?[0-9]|10|11|12)
(?<day>[0-2]?[0-9]|30|31)
(?<date>(?&year)-(?&month)-(?&day))
(?<hour>[01]?[0-9]|20|21|22|23|24)
(?<minute>[0-5]?[0-9]|60)
(?<second>(?&minute))
(?<time>(?&hour):(?&minute)([:](?&second))?)
)/x;
Now I haven't tested this, and the resulting performance may be a bit hard, but it should at least make a regex that is usable wherever you happen to print it in error messages, in a semi-understandable way.
Being Able to represent all the tokens exactly and succinctly, as well as use them in a clear fashion, I don't think you can get better than that, even in english.