Last active
June 20, 2024 18:51
-
-
Save Shakil-Shahadat/a0938fcab6b4c670b7addc9e0a52440a to your computer and use it in GitHub Desktop.
[ Delete ] Regex in JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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