- or download this
#!/usr/bin/perl
...
s/(^|[^[:alpha:]])$from($|[^[:alpha:]])/$1$to$2/i;
}
print "after: $_\n";
- or download this
before: Mär
after: Monatär
- or download this
s/(^|[^\p{IsAlpha}])$from($|[^\p{IsAlpha}])/$1$to$2/i;
- or download this
before: Mär
after: Mär