如何拆分此字符串:
|^^^*|^^^*|^^^*|^^^*|^^^*|myvalue^nao^nao^nao*|myvalue^nao^nao^nao*|myvalue^nao^nao^nao*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*
所以我只能得到值“mayvalue”。
目前,我正在使用:
$text = preg_split("/[^\|(*.?)\^$]/", $other);
但它返回myvalue^nao
有任何想法吗?