How to remove a specific special character from a string along with all Alphabets

MarsOne

I have s string which looks something like

"USD $1,111.11"

Now i want this in the following format

"1111.11"

In short i want the letters "USD" , Dollar sign "$", and the "," sign removed

So if i do .replace('/^\D+/g',''); I get

"1,111.11"

And if i do .replace('/\D+/g',''); I get

"111111"

So how can i modify my regex(I think the 1st one is a bit closer to my desired output) to give me my desired output.

thefourtheye

Just ignore both the numbers and the dot, like this

console.log("USD $1,111.11".replace(/[^.\d]/g, ""));
# 1111.11

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

remove all special character from string java

From Dev

remove all special character from string java

From Dev

How to remove all characters from a string before a specific character

From Dev

how to remove first special character from string

From Dev

Remove � Special Character from String

From Dev

Remove � Special Character from String

From Java

how to remove special character from the beginning and end of a string in c

From Dev

how to remove special character "," from a string using perl

From Dev

How can I remove the special character words from a string?

From Dev

Python / Remove special character from string

From Dev

Remove special character tag from my string

From Dev

How to replace a specific character in a string along with the immediate next character

From Dev

How to remove all special Characters from a string except - . and space

From Dev

javascript validate form input with numbers, alphabets and a special character in a specific order?

From Dev

How can I remove all whitespace from a string except when part of said string is surrounded by a specific character in Node?

From Dev

How do I remove part of a string from a specific character?

From Dev

How to Remove a specific character from the end of the string in php

From Dev

Remove all special characters from string

From Dev

How to remove a specific character from a string, only when it is the first or last character in the string.

From Dev

How to remove a specific character from a string, only when it is the first or last character in the string.

From Dev

Remove stranger alphabets characters from string

From Dev

Remove character from string at specific location

From Dev

How to remove all after specific character in Twig?

From Dev

How to remove a character from a string

From Dev

How do I remove all occurrences of a specific char from a string?

From Dev

How to remove specific character surrounding a string?

From Dev

How to remove space and the specific character in string - awk

From Dev

Remove special character from string only if is not inside word

From Dev

PHP remove special character from string and leave some

Related Related

  1. 1

    remove all special character from string java

  2. 2

    remove all special character from string java

  3. 3

    How to remove all characters from a string before a specific character

  4. 4

    how to remove first special character from string

  5. 5

    Remove � Special Character from String

  6. 6

    Remove � Special Character from String

  7. 7

    how to remove special character from the beginning and end of a string in c

  8. 8

    how to remove special character "," from a string using perl

  9. 9

    How can I remove the special character words from a string?

  10. 10

    Python / Remove special character from string

  11. 11

    Remove special character tag from my string

  12. 12

    How to replace a specific character in a string along with the immediate next character

  13. 13

    How to remove all special Characters from a string except - . and space

  14. 14

    javascript validate form input with numbers, alphabets and a special character in a specific order?

  15. 15

    How can I remove all whitespace from a string except when part of said string is surrounded by a specific character in Node?

  16. 16

    How do I remove part of a string from a specific character?

  17. 17

    How to Remove a specific character from the end of the string in php

  18. 18

    Remove all special characters from string

  19. 19

    How to remove a specific character from a string, only when it is the first or last character in the string.

  20. 20

    How to remove a specific character from a string, only when it is the first or last character in the string.

  21. 21

    Remove stranger alphabets characters from string

  22. 22

    Remove character from string at specific location

  23. 23

    How to remove all after specific character in Twig?

  24. 24

    How to remove a character from a string

  25. 25

    How do I remove all occurrences of a specific char from a string?

  26. 26

    How to remove specific character surrounding a string?

  27. 27

    How to remove space and the specific character in string - awk

  28. 28

    Remove special character from string only if is not inside word

  29. 29

    PHP remove special character from string and leave some

HotTag

Archive