I'd like that only one-digit number to be picked.
On windows python, using Japanese unicode, I've:
s = "17 1 27歳女1"
re.findall(r'[1-7]\b', s)
I need to match the second 1 and last 1 in s - not 17 initial 1.
Desired output:
['1', '1']
