0
votes
Regexp/perl code for handling both dots and commas as valid decimal separators
Trying to guess the locale of anything is always an ongoing effort, at best. What are you using this function for? The following tests look simply wrong to me:
ok(&pars …
3
votes
regex to remove prefix and another to upper case the first letter
In Perl:
#!/usr/bin/perl
while (<>) {
s/\[(?:xx_)?([^]]+)\]/\[\u$1\]/g;
print;
}
Of course, you can do it from the command line:
per …
