in reply to Re^2: regex find and replace with a twist
in thread regex find and replace with a twist
That's simple to try .. I suspect you didn't try it.
tab@music3:~/2018-0717$ cat pm.pl #!/usr/bin/perl use strict; use warnings; { my $word = '$-.%'; my $new_word = join ( '', map { "[$_]" } split '', $word ); print "$word -> $new_word\n"; } tab@music3:~/2018-0717$ perl pm.pl $-.% -> [$][-][.][%] tab@music3:~/2018-0717$
Perl doesn't care what's in the string -- more specifically, split doesn't have problems with any characters that may have special meaning in a regex.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: regex find and replace with a twist
by haukex (Archbishop) on Jul 17, 2018 at 13:01 UTC | |
by talexb (Chancellor) on Jul 17, 2018 at 13:11 UTC | |
by haukex (Archbishop) on Jul 17, 2018 at 13:21 UTC | |
by talexb (Chancellor) on Jul 17, 2018 at 17:43 UTC | |
by AnomalousMonk (Archbishop) on Jul 17, 2018 at 18:12 UTC | |
| |
by AnomalousMonk (Archbishop) on Jul 18, 2018 at 12:54 UTC | |
|