dongqian5384 2017-11-13 02:43
浏览 48
已采纳

用PHP检测特定单词之间的单词

for example,

<form method="post">
    <textarea name="content" id="editor"></textarea>
    <input type="submit" value="submit" name="alltext">
<form>

Then I type: Humans have ==brain== and it helps them learn things. After that, I want this thing to find the word between == and ==.

$all_text = $_POST["alltext"];
if (a word is between '==' and '==') { 
    $special_word = the word between '==' and '==';
} else {
    do nothing 
}

and the output I desire is the variable $special_word is set to brain.

It is more like stackoverflow.com where words between # and # is heading 1 and words between ## and ## is heading 2.

Please help me solve this puzzle.

  • 写回答

2条回答 默认 最新

  • duanchongchu5177 2017-11-13 02:47
    关注

    You should use preg_match to get the sub-string:

    $str = 'Humans have ==brain== and it helps them learn things';
    preg_match('/==(.*?)==/', $str, $match);
    $special_word = $match[1];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?