A family of Microsoft word processing software products for creating web, email, and print documents.
Hi Anfy,
The Find/Replace code assumes an english-language system (or another language that uses commas as separators). Depending on your regional settings, you may need to change:
vFindText = Array("Civil Law number [0-9]{5,} date [0-9]{1,2}/[0-9]{1,2}/[0-9]{4}", _
"constitution number [0-9]{5,} date [0-9]{1,2}/[0-9]{1,2}/[0-9]{4}")
to:
vFindText = Array("Civil Law number [0-9]{5;} date [0-9]{1;2}/[0-9]{1;2}/[0-9]{4}", _
"constitution number [0-9]{5;} date [0-9]{1;2}/[0-9]{1;2}/[0-9]{4}")