Jump to content

preg_match()


dreamwest

Recommended Posts

dreamwest, and anyone else stumbling on this thread, please see http://php.net/regexp.reference.anchors for details on using "anchors" with your regular expressions.

 

Outside a character class ... the circumflex character (^) is an assertion which is true only if the current matching point is at the start of the subject string.

 

A dollar character ($) is an assertion which is TRUE only if the current matching point is at the end of the subject string, or immediately before a newline character that is the last character in the string (by default).

Link to comment
https://forums.phpfreaks.com/topic/218095-preg_match/#findComment-1131761
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.