Regular Expressions 101

Community Patterns

Select all numbers greater than 36 (python)

1

Regular Expression
Python

r"
3[7-9]|[4-9]\d+|[1-9]\d{2,}
"
g

Description

no description available

Submitted by Mansoor - 8 years ago