What is the best method to obtain dollar value with cents from a string?

Ken Mattingly

I'm hoping to obtain the most elegant solution (least amount of typed code) for the requirement of converting a penny string into a dollar cent value. It must represent the cents (.00), so dividing by 100 is not straight forward. For example "00000600000" has to be represented as "6000.00". I've produced the following methods:

value = Math.Abs(Int(Mid(Mid(line, 188, 11), 1, Len(Mid(line, 188, 11)) - 2))) & "." & Mid(Mid(line, 188, 11), Len(Mid(line, 188, 11)) - 1, 2) 

value = (Math.Abs(Int(Mid(line, 188, 11))).ToString).Insert(Math.Abs(Int(Mid(line, 188, 11))).ToString.Length - 2, ".")

value = Math.Abs(Int(Mid(line, 188, 11))) : value = value.Insert(value.Length - 2, ".") 
StriplingWarrior
int cents = int.Parse(line);
decimal dollars = cents / 100m;
string value = dollars.ToString("$#.00");

Or, if your definition of elegant implies "fewer lines":

value = (int.Parse(line) / 100m).ToString("$#.00");

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Ruby: Convert dollar (String) to cents (Integer)

From Dev

How can I convert a value in cents to a dollar value

From Dev

Javascript: What is the best method/practice for returning a value from a function?

From Dev

grab just the cents from string

From Dev

grab just the cents from string

From Dev

Obtain key:value from returned JSON string

From Dev

What's the best method of finding integers in a string?

From Dev

What is the best method to swap words in a string

From Dev

Is there a way to construct a MonetaryAmount from a whole cents value?

From Dev

What is the best way to convert Dollars (Big Decimal) in Cents (Integer) in java?

From Dev

What is the best method to get data from database?

From Dev

What is best practice for returning value or error message from method in c#?

From Dev

How to obtain date,day,year,hours and minutes value from a string?

From Dev

remove dollar sign from string

From Dev

Removing Dollar and comma from string

From Dev

Jsoup best method to get an Element from a string

From Dev

What is the best way to find length of split characters from the given string by using String.Split() Method or Linq Lambda Expression in C#

From Java

concatenating string variables to obtain value

From Dev

How to get the value between dollar sign in string?

From Dev

What is the method signature means? String value() default "";

From Dev

Obtain "key" from "value" in R

From Dev

Obtain value from another class

From Dev

Obtain function from string in python

From Dev

Obtain Time format from a String

From Dev

What's the best method?

From Dev

Creating pricing - generate decimal based number from value in pence/cents

From Dev

What is the best method to upgrade a django project from 1.3.7 to 1.6 or 1.7

From Dev

What is the best method to change Year from YYYY to FYYY format in SQL?

From Dev

PHP functions from Android - What's the best method?

Related Related

  1. 1

    Ruby: Convert dollar (String) to cents (Integer)

  2. 2

    How can I convert a value in cents to a dollar value

  3. 3

    Javascript: What is the best method/practice for returning a value from a function?

  4. 4

    grab just the cents from string

  5. 5

    grab just the cents from string

  6. 6

    Obtain key:value from returned JSON string

  7. 7

    What's the best method of finding integers in a string?

  8. 8

    What is the best method to swap words in a string

  9. 9

    Is there a way to construct a MonetaryAmount from a whole cents value?

  10. 10

    What is the best way to convert Dollars (Big Decimal) in Cents (Integer) in java?

  11. 11

    What is the best method to get data from database?

  12. 12

    What is best practice for returning value or error message from method in c#?

  13. 13

    How to obtain date,day,year,hours and minutes value from a string?

  14. 14

    remove dollar sign from string

  15. 15

    Removing Dollar and comma from string

  16. 16

    Jsoup best method to get an Element from a string

  17. 17

    What is the best way to find length of split characters from the given string by using String.Split() Method or Linq Lambda Expression in C#

  18. 18

    concatenating string variables to obtain value

  19. 19

    How to get the value between dollar sign in string?

  20. 20

    What is the method signature means? String value() default "";

  21. 21

    Obtain "key" from "value" in R

  22. 22

    Obtain value from another class

  23. 23

    Obtain function from string in python

  24. 24

    Obtain Time format from a String

  25. 25

    What's the best method?

  26. 26

    Creating pricing - generate decimal based number from value in pence/cents

  27. 27

    What is the best method to upgrade a django project from 1.3.7 to 1.6 or 1.7

  28. 28

    What is the best method to change Year from YYYY to FYYY format in SQL?

  29. 29

    PHP functions from Android - What's the best method?

HotTag

Archive