Python String startwith regex
import re
if re.match(r'^hello', somestring):
# do stuff
Jaime Redondo
import re
if re.match(r'^hello', somestring):
# do stuff
{ "Category" : /^ABC.*/ }