gpt4 book ai didi

c# - string.Format 仅显示数字中的前 n (2) 位数字

转载 作者:太空宇宙 更新时间:2023-11-03 20:13:20 24 4
gpt4 key购买 nike

我有一个鼠标移动坐标,

例如:

s = string.Format("{0:D4},{1:D4}", nx, ny);

the result s is "0337,0022"

问题是如何只显示前面两位数字?

我想得到:

s is "03,00"

这是另一个例子:

s = "0471,0306"

我想成为:

s = "04,03"

当坐标为“-”时

例子

s = "-0471,0306"

我想成为:

s = "-04,03"

最佳答案

s =string.Format("{0},{1}",  
string.Format("{0:D4}", nx).Substring(0,2),
string.Format("{0:D4}", ny).Substring(0,2));

关于c# - string.Format 仅显示数字中的前 n (2) 位数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18501544/

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