Quote:
Originally Posted by Serpentine
You can most likely use something like :
Code:
(?i)(?:^|\s+)(\d+\.?\d*?|[\D])
To grab all of the interesting first characters/numbers
|
Yes ... that's very like one of my variations:
Code:
\s*(\d+\.?\d*\w?|\w)[a-z_\']*\.?\s*
But I'm curious -- why the leading (?:^|\s+) instead of \s*
is there a functional difference?
Thanks!