Online tech learner logo
Online Tech Learner
  • Please enable News ticker from the theme option Panel to display Post

Extract a Number from a String with JavaScript

Extract a Number from a String with JavaScript
[ad_1]

User input from HTML form fields is generally provided to JavaScript as a string. We’ve lived with that fact for decades but sometimes developers need to extract numbers from that string. There are multiple ways to get those numbers but let’s rely on regular expressions to extract those numbers!

To employ a regular expression to get a number within a string, we can use \d+:

const string = "x12345david";
const [match] = string.match(/(\d+)/);
match; // 12345

Regular expressions are capable of really powerful operations within JavaScript; this practice is one of the easier operations. Converting the number using a Number() wrapper will give you the number as a Number type.

  • CSS 3D Folding Animation
  • Write Better JavaScript with Promises

    You’ve probably heard the talk around the water cooler about how promises are the future. All of the cool kids are using them, but you don’t see what makes them so special. Can’t you just use a callback? What’s the big deal? In this article, we’ll…

  • Vertically Centering with Flexbox

    Vertically centering sibling child contents is a task we’ve long needed on the web but has always seemed way more difficult than it should be.  We initially used tables to accomplish the task, then moved on to CSS and JavaScript tricks because table layout was horribly…

  • Using MooTools 1.2 For Drag, Drop, Sort, Save

[ad_2]
Source link
administrator

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *