I'm pulling text from a multi-value field from Laserfiche:
Value 1:
1. Text text text:
a. Text text text
b. Text text text
c. Text text text
Text text text
Value 2:
2. Text text text
Value 3:
3. Text text 1995
Each value is always numbered (1., 2., 3., etc.). I need to eliminate the number in the beginning, plus the period, plus the space. Here's the regular expression I am using:
\d{1,3}\.\s((.|\n)*)
It appears to be successful, however, it is repeating the last character every time (see the bold below):
Value 1:
Text text text:
a. Text text text
b. Text text text
c. Text text text
Text text textt
Value 2:
Text text textt
Value 3:
Text text 19955
Any help eliminating this last character would be fabulous!