這是我的字符串:PHP:如何從字符串中獲取特定單詞
$string="VARHELLO=helloVARWELCOME=123qwa";
我想從字符串中獲得'hello'和'123qwa'。
我的僞代碼是。
if /^VARHELLO/ exist get hello(or whatever comes after VARHELLO and before VARWELCOME) if /^VARWELCOME/ exist get 123qwa(or whatever comes after VARWELCOME)
注意:從 'VARHELLO' 和 'VARWELCOME' 值是動態的,所以 'VARHELLO' 可能是 'H3Ll0' 或VARWELCOME可能是 'W3l60m3'。
Example: $string="VARHELLO=H3Ll0VARWELCOME=W3l60m3";
看看PHP的[parse_str()](HTTP://www.php。 net/manual/en/function.parse-str.php)函數 –
爲什麼不用像「VARHELLO = H3Ll0&VARWELCOME = W3l60m3」這樣的分隔符分割然後爆炸成一個數組? –
好的如果分隔符是空格? –