JS10 Day 7: Regular Expressions I

개요[ | ]

JS10 Day 7: Regular Expressions I
해커랭크 10 Days of Javascript
# 문제 비고
6-7 Day e
18 JS10 Day 6: Bitwise Operators
19 JS10 Day 6: JavaScript Dates
20 JS10 Day 7: Regular Expressions I
21 JS10 Day 7: Regular Expressions II
22 JS10 Day 7: Regular Expressions III

'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 and ends with the same vowel (i.e., {a, e, i, o, u})
     */
    let re = /^([aeiou]).*\1$/;
    /*
     * Do not remove the return statement
     */
    return re;
}
function main() {
    const re = regexVar();
    const s = readLine();
    
    console.log(re.test(s));
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}