gpt4 book ai didi

Javascript isPunct 函数

转载 作者:行者123 更新时间:2023-11-30 15:29:48 26 4
gpt4 key购买 nike

我目前正在为 Javascript 中的函数 isPunct 编写一个命令行程序,并且正在努力启动和完全完成它。这是我到目前为止所拥有的:

function isPunct(str) {
var str = ".,:!?;";

if (/\pPunct/.test(str)) {
alert("Character is punctuation")
}

else {
alert("Character is not punctuation")
}
}

它在控制台中正常运行,但实际上并没有挑出标点符号。如果可以的话请帮忙!提前致谢。

最佳答案

function isPunct() {
//var str = "a.,:!?;"; -> false because of a
var str = ".,:!?;";

if (/^(\.|\,|\!|\?|\:|\;|\"|\'|\-|\(|\))*$/g.test(str)) {
alert("Character is punctuation")
}

else {
alert("Character is not punctuation")
}
}
isPunct();

关于Javascript isPunct 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42408781/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com