Match for a word in a text with the PHP script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Gabriel9999
    New Member
    • Jul 2019
    • 15

    Match for a word in a text with the PHP script

    I have an applications developed with PHP. I have a big text file where I want to match for a word but this can be change in the feature. How can I match a word in PHP?
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5388

    #2
    you can use regular expressions for this task:

    PHP PCRE Funtions

    for example the preg_match method.

    Comment

    • AjayGohil
      New Member
      • Apr 2019
      • 83

      #3
      Hi,

      You can use pre match function for matching string.

      preg_match — Perform a regular expression match

      Refer Following site for more inforamtion:

      PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

      Comment

      Working...