python regex match case option -
i utilize match case option. have piece of code search string in list. guess there more elegant way same.
searchstring = "maki" itemlist = ["maki", "moki", "maki", "muki", "moki"] resultlist = [] matchcase = 0 item in itemlist: if matchcase: if re.findall(searchstring, item): resultlist.append(item) else: if re.findall(searchstring, item, re.ignorecase): resultlist.append(item)
i use re.findall(searchstring, item, flags = 2)
because re.ignorecase
integer (2) don't know number mean "matchcase" option.
you can enforce case insensitive search inside comprehension:
searchstring = "maki" itemlist = ["maki", "moki", "maki", "muki", "moki"] resultlist =[] matchcase = 1 if matchcase: resultlist = [x x in itemlist if x == searchstring] else: resultlist = [x x in itemlist if x.lower() == searchstring.lower()] print resultlist
it print ['maki']
if matchcase
1
, , ['maki', 'maki']
if set 0
.
see ideone demo
Comments
Post a Comment