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.
このような文字列が1つあります
$value="1000,00+1000x522";
から2つの文字列を取得する必要があります$value
$value
$string1="1000,00"; $string2="1000x522";
しかし、この文字列 $value は異なる長さの値を持つことができますが、常に+は最初と 2 番目の新しい文字列の区切り文字になりますか?
使用list()してexplode()
list()
explode()
$value="1000,00+1000x522"; list($string1, $string2) = explode('+', $value);