I have string file with content like this
string a = "12,1,______,_,__;1,23,122;"
I want to grab only this integer value 23
. Problem is that this conntent is dynamic and I it's lenght can be changed, so this string a can easily be in the next iteration like
string a = "12,1,______,_,__;11,2,1;"
In this case I would grab integer 2.