我有一个字符串:
"probability": {"go": 0.63549300785454799, "stand": 0.15739544829291019, "stop": 0.36450699214545207}, "label": "go"
在此字符串中,我想仅提取' }之后的部分," ' ,即
"label": "go"
此字符串在循环中生成,因此必须在循环本身内执行此操作。而且,弦的不同部分的长度不是恒定的。 我怎样才能提取所需的字符串部分?
答案 0 :(得分:1)
tar: ex.o
cc -o out ex.o
输出:
thestring = '"probability": {"go": 0.63549300785454799, "stand": 0.15739544829291019, "stop": 0.36450699214545207}, "label": "go"'
print thestring.split('}, ')[1]