I have a string.
String str= " <decision CCDBNUM=\"1111111\" adddate=\"20180112\"><decision CCDBNUM=\"2222222\" adddate=\"20180114\"> ";
I want to write a regex to fetch a particular value from this string. My Expected Output is: to fetch only the value of CCDBNUM, i.e, 1111111 2222222
Please help me with this issue.