0

Is there any way to change the value in the display to the following:

$100.25 to 10025

Need this to be in this format to go through a payment gateway.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Clay
  • 149
  • 3
  • 11

1 Answers1

0

You can use the String.delete method:

"$100.25".delete("$.")
=> 10025
Noz
  • 6,216
  • 3
  • 47
  • 82