此文件为js文件,封装模块按需导出即可
// str 需要首字母转换的字符串
// 全部大写
export const all2Large = (str) => {
const arr = str.split('')
let newStr = ''
// 通过数组的forEach方法来遍历数组
arr.forEach(function (value) {
if (value >= 'a' && value <= 'z') {
newStr += value.toUpperCase()
} else {
newStr += value
}
})
return newStr
}
// 全部小写
export const allt2Mini = (str) => {
const arr = str.split('')
let newStr = ''
// 通过for循环遍历数组
for (let i = 0; i < arr.length; i++) {
if (arr[i] >= 'A' && arr[i] <= 'Z') {
newStr += arr[i].toLowerCase()
} else {
newStr += arr[i]
}
}
return newStr
}
如果用用记得点赞