C # Implementation converts the scientific notation (E) to normal numeric values

Source: Internet
Author: User
Tags numeric numeric value

This article mainly introduces the C # implementation of the scientific counting method (E) into the normal numeric value, this article directly gives code examples, the need for friends can refer to the

1. The string value contains scientific notation such as e, such as 12E-2, which needs to be converted to a normal value of 0.12.

2. The conversion function is as follows:

The code is as follows:

Private Decimal Changedatatod (string strdata)

{

Decimal ddata = 0.0M;

if (Strdata.contains ("E"))

{

Ddata = Convert.todecimal (Decimal.Parse (strdata.tostring (), System.Globalization.NumberStyles.Float));

}

return ddata;

}

3. Call directly Changedatad (StrText)

4. After the operation is 0.12.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.