in reply to Splitting on non-initial uppercase without split
This works, but I have the distinct feeling there is a more straightforward way to do it...
$s =~ s/(?<!^)(?=[A-Z])/ /g;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Splitting on non-initial uppercamse without split
by ambrus (Abbot) on Jan 26, 2005 at 20:09 UTC | |
Re^2: Splitting on non-initial uppercase without split
by tphyahoo (Vicar) on Jan 26, 2005 at 12:03 UTC | |
by si_lence (Deacon) on Jan 26, 2005 at 12:38 UTC |