- or download this
$str = 'abac ~~~ afa~~~
+;f';
$str =~ s|(?<!\s)\&\#x0007E\;\&\#x0007E\;\&\#x0007E\;(?!\s)|~~~|g;
print $str;
- or download this
$str = 'abac ~~~ afa~~~
+;f';
$str =~ s|(?<=\S)\&\#x0007E\;\&\#x0007E\;\&\#x0007E\;(?=\S)|~~~|g;
print $str;