I have bunch of strings that comes in this flavor:
#q1_a1
#q7
basically # is the sign that has to be ignored.
after #, there comes a single-letter alphabet plus some number.
optionally, some alphabet + number combination can be followed after _ (underbar).
here's what I came up with:
>>> pat = re.compile(r"#(.*)_?(.+)?")
>>> pat.match('#q1').groups()
('q1', None)
the problem is strings of #q1_a1 format. when I apply what I made to such strings:
>>> pat.findall('#q1_f1')
[('q1_f1', '')]
any suggestions?