检查字符串数组是否在javascript中包含子字符串 [英] Check if an array of strings contains a substring in javascript

查看:77
本文介绍了检查字符串数组是否在javascript中包含子字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对这项任务有些困惑 我有一个像这样的数组: 数组= ["123","456",#123"] 我想找到包含#的元素.我使用了array.includes("#")array.indexOf("#"),但是没有用 有什么想法吗?

i'm a little bit confused with this task I have an array like this: array = ["123", "456", "#123"] i want to find the element which contains the #. I used array.includes("#") and array.indexOf("#") but it didn't work Any ideas??

推荐答案

因为include会将'#'与每个数组元素进行比较.

Because includes will compare '#' with each array element.

让我们尝试使用一些查找如果要查找是否要精确获取元素

Let's try with some or find if you want to find if you want to get exactly element

var array = ["123", "456", "#123"];

var el = array.find(a =>a.includes("#"));

console.log(el)

这篇关于检查字符串数组是否在javascript中包含子字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆