This is written in Python,
import re
s='1 89059809102/30589533 IronMan 30 Santa Ana Massage table / IronMan 30 Santa Ana Massage table'
pattern='\s(\d{11})/(\d{8})'
re.match(pattern,s)
it returns none.
I tried taking the brackets off,
pattern='\s\d{11}/\d{8}'
It still returns none
.
My questions are:
- Why the re.match does not find anything?
- What is the difference with or without bracket in pattern?