这是我得到的字符串
这给了搅拌
Immunodeficiency with increased immunoglobulin [M] [IgM]
Maternal care for anti-D [Rh] antibodies, unspecified trimester
我试图在 Python 中的字符串中查找多次出现的字符串,并获取它们的索引。
所以,使用输入字符串
char = random input string
我想要这样的结果:
result = [[index, index, index],[index, index, index ]]
所以,这是我使用的代码。
a = [m.start() for m in re.finditer(char,given string)]
,但它不适用于元字符,并导致 re.error: unterminated character set at position 0
如何改进此代码?