gpt4 book ai didi

c# - 格式化字符串 % 而不将该值乘以 100

转载 作者:行者123 更新时间:2023-12-05 09:23:20 24 4
gpt4 key购买 nike

我需要将字符串格式化为 % 但用户输入的数字已经是 %

即用户输入10,我需要显示10%

我尝试了 {0:P}{0:0%} 但它总是将用户数乘以 100

我如何简单地将 "%" 添加到输入数字而不用 {0:} 格式将其乘以 100

最佳答案

您有两个实物期权,手动添加 %

String.Format("Example: {0}%", userValue);

或者用户号除以100再显示。

String.Format("Example: {0:P}", userValue / 100.0); //don't just do "100" or you will get errors from integer division if userValue is a int.

关于c# - 格式化字符串 % 而不将该值乘以 100,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22587860/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com