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.
私は次の文字列を持っています:01SOMECOMPANYで終わりたいです01 SOMECOMPANY。正規表現を使用してこれを行うにはどうすればよいですか?
01SOMECOMPANY
01 SOMECOMPANY
正規表現は "/^([0-9]+)(.+)/" で、置き換えは "\1 \2" または "$1 $2" になります。PHP が正規表現の最初の一致を参照するために \1 または $1 を使用するかどうかを思い出せません。
正規表現は次のようになります。
(\d+)([a-zA-Z]+)
その後、それらの間にスペースを入れて、置換式でキャプチャ グループを使用できます。
$1 $2