regex - escape the word in regexp -


i have string this

 $str = '"filename","lf","$data","{ }",0'; 

how remove " string? tried use kind of regexp:

 $str =~ s/"(.+?)"//s; 

it should match word , remove "-s

you can $string =~ s/\"//g;


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -