in reply to Re^3: Search and replace in multple MS Word documents
in thread Search and replace in multple MS Word documents
It's almost working.
I have to use a forward slashes (Windows-enviroment...) and I want to use a substitution, due to weird Dutch spelling rules (single / plural).
In stead of a fixed text string(?) like:
$selection->{Text} = "hippopotamus";
something like:
s/(laborant|laboranten)/(MBB-er|MBB-ers)/;
(plural: in Dutch it's plus "en" or plus "s" ...)
Any elegant suggestions?