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.
情報を含むtxtファイルを解析したい。私が欲しいのは、その文字列内のすべての数字を見つけることです。つまり、サブが2番目の数字、3番目の数字などの後に最初の数字(数字と同じ数の数字)を返すことを意味します。それは可能ですか?
$string = preg_replace('/\D/', ' ', $string);
$numberArray = expand(' ',$string);