Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9015871
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:51:30+00:00 2026-06-16T03:51:30+00:00

I have float number in char[] . It’s DE or PL localized string, and

  • 0

I have float number in char[]. It’s DE or PL localized string, and has ',' not '.' as decimal separator. Is there any standard way to convert such string to float? I’m looking for something better then “replace , with . and use atoi“.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T03:51:31+00:00Added an answer on June 16, 2026 at 3:51 am

    As @Omkant suggested, strtod() will do for you:

    setlocale(LC_NUMERIC, "de_DE.UTF-8");
    errno = 0;
    val = strtod(myString, &endPtr);
    if (errno)
    {
        // Handle error
    }
    if (*endPtr)
    {
        // This tells you that the string had a trail, e.g. "250.99USD"
    }
    

    You can use a NULL instead of &endPtr, and if you are sure that you’ll never attempt to convert zeroes, you can use val being zero to check for errors instead of setting errno:

    // Faster, sloppier version
    setlocale(LC_NUMERIC, "de_DE.UTF-8");
    if (!(val = strtod(myString, NULL)))
    {
        // An error occurred, provided myString was not legitimately zero
        // AND is not so large a value as to create overflow.
    }
    

    In some contexts the slightly more expensive sscanf will be better, because strtod can accept alternative number formats such as hexadecimal. In some cases you might not want to allow something that’s not a “proper” float, e.g. 3.14159, to make it past the conversions stage; strtod() will allow it.

    Also, strtod() will accept (and in the sloppier version, not detect) strings such as “INFERIOR” (which will be interpreted as INFinity with a tail of ERIOR). Not really likely, but in some contexts it could lead to an application vulnerability if the value is under the user’s control.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following struct: struct Records { int Number; char Name[20]; float Salary;
I want to remove digits from a float to have a fixed number of
I have an Core Data Entity with a number of attributes, which include amount(float),
I have a binary file. There are 2288*2288 longitude float values stored in top
Is there an easy way to determine the sign of a floating point number?
I have tried to output following but got confused, float f=3.4; char *cp; cp=(char
If I have a class like this: typedef union { __m128 quad; float numbers[4];
I have a (float) rating value as a percentage from 0..100 (where 50 =
I have two float values, 'a' and 'b' . I need to calculate the
I have two float variables that are equal, I retrieve them by PHP and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.