How do I convert the string “39.9983%” into “39%” in C#?

后端 未结 8 1136
一整个雨季
一整个雨季 2021-01-16 07:46

I don\'t want to do any rounding, straight up, \"39%\".

So \"9.99%\" should become \"9%\".

8条回答
  •  忘掉有多难
    2021-01-16 08:42

    I hope this will work.

    string str = "39.999%";

    string[] Output = str.Split('.');

    Output[0] will have your Answer.

    Thanks

提交回复
热议问题