Jump to content

Preg_match_all sytax help


imperium2335

Recommended Posts

Hi, I can't ever seem to get this function to work properly. I have read the manual and looked at examples other people they have done but with no success.

Could someone tell me what is wrong with my syntax, I want it to count all the occurrences of "type="hidden"".

$hiddencount = preg_match_all("/type\=\"hidden\"/", $form, $dump) ;

Cheers.

Link to comment
Share on other sites

Could someone tell me what is wrong with my syntax, I want it to count all the occurrences of "type="hidden"".

$hiddencount = preg_match_all("/type\=\"hidden\"/", $form, $dump) ;

 

There is nothing, syntactically or otherwise, wrong with your regular expression which would prevent it from matching what you want it to match. (Aside: cags mentions that equals is not a special character so does not need escaping with a backslash. This is true, but if one does put a backslash before non-special characters it will just be ignored anyway.)

 

The regex will happily (if an expression can have emotion) match occurrences of type="hidden" in a string.  If this is returning a zero count then there may be no occurrences of that exact string present.

 

As a quick example using your exact regular expression:

$subject = 'type="hidden"type="hidden"type="hidden"';
$count   = preg_match_all("/type\=\"hidden\"/", $subject, $matches);
var_dump($count); // int(3)

 

Another alternative, because your example does not really require the use of a regular expression (simple string matching will suffice) and only wants the count, would be to call on the handy substr_count function:

$subject = 'type="hidden"type="hidden"type="hidden"';
$count   = substr_count($subject, 'type="hidden"');
var_dump($count); // int(3)

 

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.