Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Hello,
I want to check if a variable in my dataset contains an uppercase letter. For this I want to use the "Sample / Filter" recipe with the following regular expression: [A-Z]
It does not work
I also tried to write the regular expression like this: / [A-Z] / or like this : ([A-Z ])
It also doesn't work
Thank you for your help, Olivier
Hello @OlivierAb ,
Use this regex instead:
.*[A-Z].*
Best,
Damien
Hello @OlivierAb ,
Use this regex instead:
.*[A-Z].*
Best,
Damien
Thank you Damien
I did use a formula and it works.
But I would have liked to use the "Sample / Filter" recipe with the option "matches the regex"
Olivier
.*[A-Z].* works 🙂
Thank you Damien