in reply to Re: Splitting on non-initial uppercase without split
in thread Splitting on non-initial uppercase without split

How about:
$s =~ s/([a-z])([A-Z])/$1 $2/ig;
(untested)

Replies are listed 'Best First'.
Re^3: Splitting on non-initial uppercase without split
by si_lence (Deacon) on Jan 26, 2005 at 12:38 UTC
    I guess you would want to make your regex case sensitive:
    $s =~ s/([a-z])([A-Z])/$1 $2/g;

    But then I think it still would not fit the description as it
    woud not split something like "Test1Test2" into "Test1 Test2"
    So following your line of thought it should be something like
    $s =~ s/([^A-Z])([A-Z])/$1 $2/g;

    si_lence