Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$string ="string string //deleteme string //deleteme // deleteme string";
二重スラッシュで始まるすべての行を削除するには?
preg_replaceを使用して、単語/行を空の文字列に置き換える必要があると思います。何かのようなもの:
$regex = '/ \/\/ [^\n]* \n /'; preg_replace($regex, '', $string);
行全体を削除します。
$string = preg_replace('/\/\/\S*[^\n]+\n?/','',$string);