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.
次のような文字をスキップするためにこれを実装するにはどうすればよい! : \ & 'ですか?
! : \ & '
preg_match_all('/#(\w+)/', $string, $matches);
次のようなパターンを使用する場合、実装によっては、これらの文字をすべて見つけて置き換えることができるはずです。
$teststring = "#!TEST'\&" $pattern = (!|&|\\|\') $replacement = '' echo preg_replace($pattern, $replacement, $teststring)
出力する必要があります:
'#TEST'