Regex - ביטויים רגולים
- find the word Hello "\bHello\b"
- fint phone number XXX-XXXX "\d\d\d-\d\d\d\d"
- fint phone number XXX-XXXX "\d{3}-\d{4}"
- find Word yhat start with A "\ba\w*\b"
- find digits "\d+"
- find word with fix length (6) "\b\w{6}\b"
- find spaces "\s"
- start with "^The start"
- ends with "The End$"