in reply to Re^2: change numbers in a corpus into words
in thread change numbers in a corpus into words
Oh, that's my pattern doing that (it requires a non-space character after the digit). Try this instead (single digits match):
perl -MLingua::EN::Numbers -pe 's/(\d\S*)/Lingua::EN::Numbers::num2en( +$1) || $1/ge' < input_file > output_file
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: change numbers in a corpus into words
by Anonymous Monk on Feb 05, 2008 at 23:08 UTC |