function getLastLetterPosition(str) {
let _pos = 0;
for (let i = 0; i < str.length; i++) {
if (new RegExp("^[a-zA-Z]$").test(str[i])) {
_pos = i;
}
}
console.log('Last letter position:', _pos);
return _pos;
}
版权属于:
moonjerx
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)