I have one variable having value
ServerC = "WebSphere:cell=abc,cluster=Cluster1+WebSphere:cell=abc,cluster=Cluster2"
I want only all Cluster values in another variable I am trying to use
clusterN = ServerC.split("cluster=")
clusterN = clusterN[1]
but I am not getting required values