Let\'s say I have a string \'gfgfdAAA1234ZZZuijjk\' and I want to extract just the \'1234\' part.
\'gfgfdAAA1234ZZZuijjk\'
\'1234\'
I only know what will be the few characte
Using PyParsing
import pyparsing as pp word = pp.Word(pp.alphanums) s = 'gfgfdAAA1234ZZZuijjk' rule = pp.nestedExpr('AAA', 'ZZZ') for match in rule.searchString(s): print(match)
which yields:
[['1234']]