How to get a number value of a string in Javascript?
To get an integer in the string “abcde 30”, use the following regex in JavaScript, else it will return NaN. With that, use parseInt() to get the numbers with regex under String match() method −
Example
<!DOCTYPE html> <html> <body> <script> var myStr = "abcdef 30"; var num = parseInt(myStr.match(/\d+/)) alert(num); </script> </body> </html>
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP