gpt4 book ai didi

javascript - 如何检查我的字符串是否包含 JavaScript 中的句点?

转载 作者:可可西里 更新时间:2023-11-01 02:49:33 26 4
gpt4 key购买 nike

我希望能够检测一个字符串是否有一个 .并根据它返回 true/false。

例如:

"myfile.doc" = TRUE

对比

"mydirectory" = FALSE;

最佳答案

使用indexOf()

var str="myfile.doc";
var str2="mydirectory";

if(str.indexOf('.') !== -1)
{
// would be true. Period found in file name
console.log("Found . in str")
}

if(str2.indexOf('.') !== -1)
{
// would be false. No period found in directory name. This won't run.
console.log("Found . in str2")
}

关于javascript - 如何检查我的字符串是否包含 JavaScript 中的句点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6560307/

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