First I need to identify a particular string that looks like this:
my $removeU8374 = 'test A dkdkd荴kdklsl skldsls荴lksdkdk skdkd荴kdkls';
I then want to remove a particular character (U+8374) from the string.
So far I've tried this:
$removeU8374 = ~ s/^test A (.*[^\N U+8374])//g;
But it's not working...
=~. It's one operator.