We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\d の部分と \D{1,3} の部分を再度取り直す処理がもったいないので、最初に Regex.Match(m_commandEventArgs.Name, @"(\d)(\D{1,3})") を呼んで、その返り値のMatchのGroupsを活用しましょう
\d
\D{1,3}
Regex.Match(m_commandEventArgs.Name, @"(\d)(\D{1,3})")
Originally posted by @cllightz in #125 (comment)
The text was updated successfully, but these errors were encountered:
TODOの追加 #131
f33dd54
ca45382
No branches or pull requests
\d
の部分と\D{1,3}
の部分を再度取り直す処理がもったいないので、最初にRegex.Match(m_commandEventArgs.Name, @"(\d)(\D{1,3})")
を呼んで、その返り値のMatchのGroupsを活用しましょうOriginally posted by @cllightz in #125 (comment)
The text was updated successfully, but these errors were encountered: