I have a string something like this
JINSAL0056( 1), JINSAL0057( 1), JINSAL0041( 1),
I need to put JINSAL0056, JINSAL0057,JINSAL0041 in a field and number inside the (). I have written couple of codes let me know if I am going in the right directions.
s = "JINSAL0056( 1), JINSAL0057( 1), JINSAL0041( 1)"
ss = s.split(",")
sss = ss.split(" ( ")
How to write the split. Please do help me put