我有一个值为
的变量ServerC = "WebSphere:cell=abc,cluster=Cluster1+WebSphere:cell=abc,cluster=Cluster2"
我只想要另一个变量中的所有Cluster值 我正在尝试使用
clusterN = ServerC.split("cluster=")
clusterN = clusterN[1]
但我没有得到所需的值
答案 0 :(得分:3)
您可以使用re.findall()
:
import re
ServerC = "WebSphere:cell=abc,cluster=Cluster1+WebSphere:cell=abc,cluster=Cluster2"
pat = re.compile("cluster\=(\w+)")
print(pat.findall(ServerC))
# Output: ['Cluster1', 'Cluster2']