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.
文字列があります"test@html.com+test+7"。抽出したい をtest@html.com配列に入れますtest。7これを達成する方法はPHPですか?使ってみpreg_matchましたが割れませんでした。
"test@html.com+test+7"
test@html.com
test
7
preg_match
print_r(explode("+","test@html.com+test+7"));
作業コード:)