HJ84 统计大写字母个数
题目描述
示例
代码
js
/*
统计大写字母个数
直接用个正则 匹配一下
使用replace 计数
*/
let readline = require('readline')
let rl = readline.createInterface({
input: process.stdin,
output: process.stdout
})
rl.on('line', line=>{
let reg = /[A-Z]/g
let count = 0 // 统计大写字母的个数
line.replace(reg, (match)=>{
count++
})
console.log(count)
})