Quote:
Originally Posted by chaley
You are welcome.
Just noticed: you must use re.match('.*\s(\d+ (note the new .* at the beginning of the string). It won't work as I wrote it, because re.match is an anchored search. The pattern must match all characters from the beginning. This is done to ensure efficient location of the last annotation group.
|
Hi Chaley
Posted before reading this post.
Good part is I figured it out myself !

Thank you, once more