Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MinSomai/e409c690786281c1e540bcb8c373840d to your computer and use it in GitHub Desktop.
Save MinSomai/e409c690786281c1e540bcb8c373840d to your computer and use it in GitHub Desktop.
Day 7 : Javascript | Regular Expressions II - Hackerrank.js
'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