I don\'t want to do any rounding, straight up, \"39%\".
\"39%\"
So \"9.99%\" should become \"9%\".
\"9.99%\"
\"9%\"
Now we have two questions asking the same thing..
Heres my crack at it.
"39.9983%".Split('.')[0] + "%";
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