Thanks
"Mr. Shawn H. Corey" <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]:
> How would it parse "XMLSchema" ? You need to write down the rules
> before you try creating than regex for them. Try:
>
Ok - I am a typical customer - my stated requirement isn't quite my real
requirement :-)
Andrew schreef:
> I am tying to expand some camel case with spaces - but I want multiple
> captitals to remain as one word. So
> I want "PerlNotesOnXML" -> "Perl Notes On XML"
>
> My attempt is to use [A-Z]+ in a lookahead.
>
> my $text = "PerlNotesOnXML" ;
> $text =~ s/(?=[A-Z]+)/ /gx ;
> p
Andrew wrote:
> I am tying to expand some camel case with spaces - but I want multiple
> captitals to remain as one word. So
> I want "PerlNotesOnXML" -> "Perl Notes On XML"
>
> My attempt is to use [A-Z]+ in a lookahead.
>
> my $text = "PerlNotesOnXML" ;
> $text =~ s/(?=[A-Z]+)/ /gx ;
>
Andrew wrote:
I am tying to expand some camel case with spaces - but I want multiple
captitals to remain as one word. So
I want "PerlNotesOnXML" -> "Perl Notes On XML"
My attempt is to use [A-Z]+ in a lookahead.
my $text = "PerlNotesOnXML" ;
$text =~ s/(?=[A-Z]+)/ /gx ;
print $text ;
I
On Sun, 2008-11-23 at 11:52 +, Andrew wrote:
> I am tying to expand some camel case with spaces - but I want multiple
> captitals to remain as one word. So
> I want "PerlNotesOnXML" -> "Perl Notes On XML"
>
> My attempt is to use [A-Z]+ in a lookahead.
>
> my $text = "PerlNotesOnXML" ;
>
I am tying to expand some camel case with spaces - but I want multiple
captitals to remain as one word. So
I want "PerlNotesOnXML" -> "Perl Notes On XML"
My attempt is to use [A-Z]+ in a lookahead.
my $text = "PerlNotesOnXML" ;
$text =~ s/(?=[A-Z]+)/ /gx ;
print $text ;
I think I can se