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.
split()古いものをに変換する記事をいくつか見たことがありますが、これまでのところ区切り文字をpreg_split()使用したものはありません。/
split()
preg_split()
/
同等のものに変換split('[-/.]')するにはどうすればよいですか?preg_split()私の正規表現の知識はひどいです!
split('[-/.]')
助けてくれてありがとう!
preg_split('~[-/.]~', ...
区切り文字はほぼすべての文字にすることができます
明示的にスラッシュにしたい場合は、式内のすべてのスラッシュをエスケープします
preg_split('/[-\/.]/', ...
これを試して
preg_split('#[-/.]#',"your_text")