Jump to content

Little help with preg_match


cataiin

Recommended Posts

Hi guys.

I have this "sentence":

"key":"321313-0381","something":"value,"

and I want to obtain only 321313-0381. The problem is somethings differs, isn't always the same.

I've tried:

$start = '"key":"';
$end = '","';
preg_match("/$start(.*)$end/s", $content, $match);
$result = $match[1];
echo "$result";

 But unsuccessful. For $end = '\/'; too. Can I get a little help? :)

 

Link to comment
https://forums.phpfreaks.com/topic/281723-little-help-with-preg_match/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.