In the following example shows weird problem: Python pattern does not work.
import re
data = r'blah blah @Component blah blah'
m = re.match(r'\@Component', data)
print m
It would print out:
None
What did I miss here?
In the following example shows weird problem: Python pattern does not work.
import re
data = r'blah blah @Component blah blah'
m = re.match(r'\@Component', data)
print m
It would print out:
None
What did I miss here?