Jump to content

Need Regular expression


piyush23424

Recommended Posts

i want to extract the values enclosed with inverted commas(quotes) using regular expression.

 

the string is

 

$string = '"6467370","0","1047","","","","","","","","",""

"000646737043","999010161661","s802853218509","Test Account","3","9.9500","02/04/2008","99","65","None","4 test test","",""';

 

reg. exp. should put the extracted values in a array

 

thanks in advance.

 

Thanks

Link to comment
Share on other sites

yes, you are right that only reg exp. can work here

I had made a reg. exp for this but it extracts only first element from the string.

here is the regular expression. pls, check if you know how to make it work to show all the matching values

 

$pattern = "^\"(.*?)\"^";

preg_match($pattern, $string, $matches);

 

print_r($matches);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.