Re: Replace white space between ""

Serguei Trouchelle <[email protected]>
Newsgroups gmane.comp.lang.perl.active-perl
Message-ID <[email protected]>
Stephane Legault wrote:

> I need to replace white space between delemiter "". After looking for do
> this I need to tell I did not find the solution!
> $test='test "ROYALE JEWELLER"@omr12.test.com <mailto:"ROYALE
> JEWELLER"@omr12.networksolutionsemail.com> test';
> And I would like have this in $test3 (look the space between royale and
> jeweller is gone):
> test "ROYALEJEWELLER"@omr12.networksolutionsemail.com  test

$test =~ s/(".*?")/ $_ = $1; s!\s!!g; $_; /gex;


-- 
Serguei Trouchelle
_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.