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.
コンマで区切られた文字列/整数を変更または変換する方法はありますか?
例 :
$str = "121,232,343,454";
結果は次のようになります:
str1、str1、str1、str1
split() は非推奨です!!! 代わりに、explode($seperator, $string) を使用してください。
$str = "a,b,c"; $items = explode(',', $str);
使用している言語に応じて、これは多くの場合、split($str, ',')またはsplit(',', $str)または$str.split(',')関数です。
split($str, ',')
split(',', $str)
$str.split(',')