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.
上昇する数字のみに一致する正規表現が必要です。例: 22335566 66678 ではなく: 444663 33997777666664
数字の長さは固定されておらず、開始桁も固定されていません。
何か助けてください。
正規表現を使用してこれを実装する最良の方法は次のとおりです。
^(?=\d)1*2*3*4*5*6*7*8*9*$
正規表現は次のように一致します。
(?=\d)