Skip to content

Instantly share code, notes, and snippets.

@Shakil-Shahadat
Last active November 28, 2021 14:53
Show Gist options
  • Save Shakil-Shahadat/a0938fcab6b4c670b7addc9e0a52440a to your computer and use it in GitHub Desktop.
Save Shakil-Shahadat/a0938fcab6b4c670b7addc9e0a52440a to your computer and use it in GitHub Desktop.
Regex in JavaScript
// Test the existance of a string
let myString = 'Hello, World!';
let myRegex = /Hello/;
let result = myRegex.test( myString );
console.log( result );
// Extract a part of a string
let myString = 'Hello, World!';
let myRegex = /Hello/;
let result = myString.match( myRegex );
console.log( result );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment