我刚刚开始使用python。 我试图不止一次地找到char的索引
这是示例字符串
08:28:57,990 DEBUG [http-0.0.0.0-18080-33] [tester] [1522412937602-580613] [TestManager] ABCD: loaded 35 test accounts
如何获得' ['和']'介绍' TestManager'
答案 0 :(得分:0)
这可能会有所帮助。
s = "08:28:57,990 DEBUG [http-0.0.0.0-18080-33] [tester] [1522412937602-580613] [TestManager] ABCD: loaded 35 test accounts"
for i in reversed(s.split()): #Split string by space and reverse the list
if ("[" in i) and ("]" in i): #Check if "[" and "]" in string
print(i)
break
<强>输出:强>
[TestManager]