fork download
  1. import re
  2. p = re.compile(r':RE\[(.*?)]:')
  3. test_str = "# Even more commments\nWARNING:HDLParsers:817 - \":RE[.*]:/modules/top/hdl_src/cpu_0342.vhd\" Line :RE[.*]: Choice . is not a locally static expression."
  4. print([x.start(1) for x in p.finditer(test_str)])
Success #stdin #stdout 0.04s 9984KB
stdin
Standard input is empty
stdout
[52, 100]