如何从指数符号中删除零

发布于 2024-12-25 19:06:14 字数 265 浏览 2 评论 0原文

我正在使用指数格式来格式化 C# 中的十进制数。 例如,如果数字是

0.0001234567

格式

(0.0000123456).ToString("E4");

“显示

1.2345E-004

” ,如何从指数中删除前导零,使其读作如下?

1.2345E-4

I'm using exponential formatting to format a decimal number in C#.
For example if the number is

0.0001234567

Formatting with

(0.0000123456).ToString("E4");

Shows

1.2345E-004

How can I remove leading zero from exponent so it read as below?

1.2345E-4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾听心声的旋律 2025-01-01 19:06:14

引用 MSDN

格式说明符的大小写指示是否在指数前添加“E”或“e”。指数始终由加号或减号以及至少三位数字组成。如果需要,指数将用零填充以满足此最小值。

这是与标准编号说明符一起使用的。

但是,通过自定义数字格式,您可以设置0:

987654 ("#0.0e0") -> 98.8e4

对于您的情况,它是

(0.0000123456).ToString("#0.0E0"); //12.3E-6

在 BobSort 注释后编辑

如果您需要科学记数法,您可以指定您只需要小数点前一位数字,如下所示:

(0.0000123456).ToString("0.00#E0"); //1.23E-5

Quoting MSDN:

The case of the format specifier indicates whether to prefix the exponent with an "E" or an "e". The exponent always consists of a plus or minus sign and a minimum of three digits. The exponent is padded with zeros to meet this minimum, if required.

This is with the standard number specifier.

However, with the custom number format, you can set the number of 0's:

987654 ("#0.0e0") -> 98.8e4

For your case, it's

(0.0000123456).ToString("#0.0E0"); //12.3E-6

Edit after BobSort comment

If you need scientific notation, you can specify that you need only one digit before decimal with the following:

(0.0000123456).ToString("0.00#E0"); //1.23E-5
2025-01-01 19:06:14

假设您需要始终显示小数点后 4 位数字,请尝试

"0.0000E+0"

这样它会显示,

(0.0000123456).ToString("0.0000E+0"); //1.2345E-5 
(0.0000120000).ToString("0.#E+0");    //1.2000E-5

如果您不需要显示小数点后 4 位数字,

"0.#E+0"

那么它会显示

(0.0000123456).ToString("0.#E+0"); //1.2E-5
(0.0000120000).ToString("0.#E+0"); //1.2E-5

Assuming you need to always show 4 digits after decimal point, try

"0.0000E+0"

so it will show

(0.0000123456).ToString("0.0000E+0"); //1.2345E-5 
(0.0000120000).ToString("0.#E+0");    //1.2000E-5

if you don't need to show 4 digits after decimal points use

"0.#E+0"

so it will show

(0.0000123456).ToString("0.#E+0"); //1.2E-5
(0.0000120000).ToString("0.#E+0"); //1.2E-5
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文