I don\'t want to do any rounding, straight up, \"39%\".
\"39%\"
So \"9.99%\" should become \"9%\".
\"9.99%\"
\"9%\"
I hope this will work.
string str = "39.999%"; string[] Output = str.Split('.');
string str = "39.999%";
string[] Output = str.Split('.');
Output[0] will have your Answer.
Thanks