15 May
2003
15 May
'03
10:55
On Thursday 15 May 2003 12:53, Konstantinos Georgokitsos wrote:
just a sec. one dot matches any character but does it maybe match one and only one character?
It does match exactly one character, but at any position in the string to match. Check this out: (it's tcl regexp): kohli@karlchen:~> tclsh % set string "From:Markus Kohli <kohli@webdeko.com>" From:Markus Kohli <kohli@webdeko.com> % regexp -- {.} $string 1 => 1 means it matches But I guess we're getting off topic here ;-) -- I am overqualified? Allow me to remove some lies from my resume...