Created
March 4, 2021 16:47
-
-
Save MinSomai/e409c690786281c1e540bcb8c373840d to your computer and use it in GitHub Desktop.
Day 7 : Javascript | Regular Expressions II - Hackerrank.js
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
'use strict'; | |
process.stdin.resume(); | |
process.stdin.setEncoding('utf-8'); | |
let inputString = ''; | |
let currentLine = 0; | |
process.stdin.on('data', inputStdin => { | |
inputString += inputStdin; | |
}); | |
process.stdin.on('end', _ => { | |
inputString = inputString.trim().split('\n').map(string => { | |
return string.trim(); | |
}); | |
main(); | |
}); | |
function readLine() { | |
return inputString[currentLine++]; | |
} | |
function regexVar() { | |
/* | |
* Declare a RegExp object variable named 're' | |
* It must match a string that starts with 'Mr.', 'Mrs.', 'Ms.', 'Dr.', or 'Er.', | |
* followed by one or more letters. | |
*/ | |
let re = /^([A-Z][a-z]*\.).*[^\.]$/im; | |
/* | |
* Do not remove the return statement | |
*/ | |
return re; | |
} | |
function main() { | |
const re = regexVar(); | |
const s = readLine(); | |
console.log(!!s.match(re)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment