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.
重複の可能性: 括弧内の整数の一致
ブラケット間の整数を一致させるための正規表現は何ですか? 例えば、
"ASDF[ 4 ]" "ZXCd[6]" "qwerr [ 77 ]"
一致する文字列は「4」、「6」、「77」です。
問題は、整数に一致し、空白を無視できる正規表現を知らないことです。何かご意見は?
これを試して、
(?<=\[\s*)\d+(?=\s*\])