Skip to content

HJ84 统计大写字母个数

题目描述

image-20220214161055127

示例

image-20220214161103471

代码

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)
})

题目来源

HJ84 统计大写字母个数