等效的 JavaScript substr_count?

发布于 2024-09-29 13:47:11 字数 358 浏览 4 评论 0原文

我正在尝试为 Javascript 找到一个等效的函数。我想做的是查找当前 URL,如果它具有以下 URL 的第一部分,则执行某些操作。

在 PHP 中我有这个

if (substr_count($current_url, $root . $_SERVER['SERVER_NAME'] . '/shop/shop-gallery') {
 doSomething();
}

所以只要它匹配该 URL 和所有子 URL,如 /shop/shop-gallery/product1..etc,该语句就是 true。

现在我怎样才能在 javascript 中执行同样的语句呢?

谢谢你们!

I am trying to find an equivalent function for Javascript. What I am trying to do is look for the current URL and if it has the following first part of the URL then do something.

In PHP I have this

if (substr_count($current_url, $root . $_SERVER['SERVER_NAME'] . '/shop/shop-gallery') {
 doSomething();
}

So as long as it matches that URL and all sub URLs like /shop/shop-gallery/product1..etc, the statement will be true.

Now how can I execute the same exact statement in javascript?

Thanks guys!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ま柒月 2024-10-06 13:47:11

JavaScript 中的 Substr_count 也可以实现如下:

var substr_count = hay_stack_string.split('search_substring').length - 1;

Substr_count in JavaScript can also be implemented as follows:

var substr_count = hay_stack_string.split('search_substring').length - 1;
雅心素梦 2024-10-06 13:47:11

你实际上是要计算子字符串的数量还是只是看看它是否存在?如果是第一个,则使用 Frosty Z 的答案,如果是后者,则首先不应在 PHP 中使用 substr_count ,而应使用 strpos (它可能更快) )。

后者的 JS 版本是 String 方法 indexOf

if (stringToSearch.indexOf(current_url) > -1)  {
   doSomething();
}

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/indexOf

You you actually what to count the substrings or just see if it's there? If it's the first, then use Frosty Z's answer, if it's the latter you shouldn't be using substr_count in PHP in the first place, but strpos instead (it's probably faster).

The JS version of the latter is the String method indexOf:

if (stringToSearch.indexOf(current_url) > -1)  {
   doSomething();
}

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/indexOf

绅刃 2024-10-06 13:47:11

请检查 http://locutus.io/php/substr_count/ 以获得等效内容。

Please check http://locutus.io/php/substr_count/ for the equivalent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文