Answers for "how to get only numbers from string in python"

1

python only numbers in string

string = "abc123"
# Method 1
''.join(char for char in string if char.isdigit())

#Method 2
import re
re.sub("[^0-9]", "", string)
Posted by: Guest on December-03-2020
0

get only numbers from string

/*get only numbers from string*/

str.replace('Rs. ', '').replace(/,/g, '');
or

str.replace(/Rs. |,/g, '');
/,/g is a regular expression. g means global
/Rs. |,/g is a single regular expression that matches every occurence of Rs. or ,
Posted by: Guest on August-09-2021

Code answers related to "how to get only numbers from string in python"

Python Answers by Framework

Browse Popular Code Answers by Language