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 7932717
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:06:03+00:00 2026-06-03T21:06:03+00:00

I have the following value 48.81 , it comes as a string from the

  • 0

I have the following value 48.81, it comes as a string from the database, I need to convert it to decimal, I’m using:

Dim Seconds As Decimal = Convert.ToDecimal((Coordinate.Substring(4, 5)), CultureInfo.InvariantCulture)

I’m receiving 4881D and I need 48,81

Any ideas? I thought CultureInfo.InvariantCulture was going to help me with that

EDIT

The coordinate value is 675900.244.
I’m “spliting” it like this:

Dim Degress As Integer = Coordinate.Substring(0, 2),
Dim Minutes As Integer = Coordinate.Substring(2, 2),
Dim Seconds As Decimal = Convert.ToDecimal((Coordinate.Substring(4, 5)), CultureInfo.InvariantCulture),
Dim Position As Enumerations.EnumCoordinatesPosition = Coordinate.Substring(9, 1)

EDIT

Showing the error

EDIT

Showing the coordinate

EDIT
This is the value of the coordinate in the database

Showing the value of the coordinate in the DB

  • 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-03T21:06:05+00:00Added an answer on June 3, 2026 at 9:06 pm

    The problem lies in the variable databaseCoordinate, which contains comma instead of dot. InvariantCulture uses comma to separate groups of digits and dot as a decimal symbol. To see this execute the following code:

    //outputs '.'
    Console.WriteLine(CultureInfo.InvariantCulture.NumberFormat.NumberDecimalSeparator);
    //outputs ',' 
    Console.WriteLine(CultureInfo.InvariantCulture.NumberFormat.NumberGroupSeparator); 
    

    What you can do about it:

    1. Replace comma with dot before parsing – all your code then will work as expected.
    2. Specify decimal separator for Convert.ToDecimal method like this:

      decimal Seconds = Convert.ToDecimal((Coordinate.Substring(4, 5)), new NumberFormatInfo { NumberDecimalSeparator = "," });
      
    3. Write update script DB for all DB entries with coordinates to use dot as a decimal symbol.

    Example – this code gives the results you are expecting:

    string Coordinate = "100948.811"; //Note the dot instead of comma
    int Degress = Convert.ToInt32(Coordinate.Substring(0, 2)); //10
    int Minutes = Convert.ToInt32(Coordinate.Substring(2, 2)); //9
    decimal Seconds = Convert.ToDecimal((Coordinate.Substring(4, 5)), CultureInfo.InvariantCulture); //48.81
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have the following value from database $atag = <a href="http://blackberry.com/twitter" rel="nofollow">Twitter for
I have following string: {_id:scheme_version,_rev:4-cad1842a7646b4497066e09c3788e724,scheme_version:1234} and I need to get value of scheme version,
I have the following code: Dim lStatementText As String Dim lStatementString As New System.Text.StringBuilder
I have got a cookie string from HTTP response header like the following line:
I am using the following function to Convert a String variable to a Date.
I have the following: PMRCutoffDate.Value = ReportCalc.Cutoff_Date.ToString(MM/dd/yyyy); PMRDate.Value = DateTime.Now.ToString(MM/dd/yyyy); i want dates to
I have the following as the value for my textbox in SSRS report: =iif(IsNothing(Fields!MyDate.Value),
I have following code that does not work due to a being a value
I have an input field with the following value: 12-04-2012 This is a Dutch
I have following user control: <UserControl.Resources> <Style TargetType=HeaderedItemsControl> <Setter Property=Template> <Setter.Value> <ControlTemplate TargetType=HeaderedItemsControl> <Grid>

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.