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+21-32*43/54」などの文字列を変数に分割することは可能ですか:
a=1; b=21; c=32; d=43; e=54;
演算子(+、-、など)に関係なく、数字のみを見つけてそれらを分離したい場合は、使用できます
"1+21-32*43/54".match(/\D/)
すべての数値の配列を取得するには
Groovy では簡単です。
"1+21-32*43/54".split(/[^0-9]/)
Java では、同じ正規表現を使用できます。