in reply to Find & Replace
If that's the case, it's as simple as:
while (<LINES>) { $_ =~ s/,+$/,/; }
(You could actually do this from the command line with something like: perl -pi -e 's/,+$/,/' file.txt)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
| A reply falls below the community's threshold of quality. You may see it by logging in. |