in reply to Re: remove chars with regex
in thread remove chars with regex
(assuming the string is long enough)$ perl -Mstrict -wE'my $char = "0x388c818ca8b9251b398a736a67ccb19297"; substr($char, 5, -5, " ... "); say $char' 0x388 ... 19297
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: remove chars with regex
by ikegami (Patriarch) on Feb 27, 2025 at 11:18 UTC |