Answers for "regex to remove numbers from string"

0

regex remove non numeric

s = "joe ($3,004.50)";
s = Regex.Replace(s, "[^0-9.]", "");
// 3004.50
Posted by: Guest on September-02-2021
0

python regex remove digits from string

# credit to the Stack Overflow user in the source link
# add a space before d+ to exclude numbers close to letters, as b3 for example

s = "This must not be deleted, but the number at the end yes 134411"
s = re.sub("d+", "", s)
Posted by: Guest on August-27-2021

Code answers related to "regex to remove numbers from string"

Python Answers by Framework

Browse Popular Code Answers by Language