in reply to Re^3: Insert Space between namesin thread Insert Space between names
Following the stealth update that is true. When I commented, the code was:
my $string = "JohnDoe"; $string =~ s/([A-Z])/ $1/g; print $string; [download]