1) “glob:at row [0-9]” does not match “at row 7”
2) “glob:at row *” does match “at row 7”
Why does “glob:at row [0-9]” not match “at row 7”? How do I fix it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
glob patterns only recognize two wildcard characters:
*(zero or more of anything) and?(one of anything). To do what you want, you need to useregexp:, notglob:.