我有以下的文本字符串:「園藝,園林綠化,足球,3D建模」查找字符串數組 - PHP
我需要PHP短語之前挑出來的字符串,「Football」。
因此,無論數組的大小,代碼將始終掃描短語「Football」,並檢索它之前的文本。
這裏是我的(跛腳)試圖至今:
$array = "Swimming,Astronomy,Gardening,Rugby,Landscaping,Football,3D Modelling";
$find = "Football";
$string = magicFunction($find, $array);
echo $string; // $string would = 'Landscaping'
任何幫助,將不勝感激。
非常感謝
而且[你有什麼嘗試](http://whathaveyoutried.com)? – Havelock
嗨:)我還沒有嘗試過任何東西,因爲我有點不確定從哪裏開始。 – michaelmcgurk
這看起來像正規表達式的工作 –