Questions tagged «contains»

“包含”运算符/方法用于确定实体集合是否包含具有特定属性的元素。

7
。包含自定义类对象列表的()
我正在尝试.Contains()在自定义对象列表上使用该功能 这是清单: List<CartProduct> CartProducts = new List<CartProduct>(); 和CartProduct: public class CartProduct { public Int32 ID; public String Name; public Int32 Number; public Decimal CurrentPrice; /// <summary> /// /// </summary> /// <param name="ID">The ID of the product</param> /// <param name="Name">The name of the product</param> /// <param name="Number">The total number of that …
95 c#  list  class  contains 

14
Java,简化检查int数组是否包含int
基本上,我的同伴一直在说,我可以使用另一种检查int数组是否包含int的方式来缩短代码,尽管他不会告诉我它是什么:P。 当前: public boolean contains(final int[] array, final int key) { for (final int i : array) { if (i == key) { return true; } } return false; } 也尝试过此方法,尽管由于某种原因它总是返回false。 public boolean contains(final int[] array, final int key) { return Arrays.asList(array).contains(key); } 有人可以帮我吗? 谢谢。
94 java  arrays  int  contains 

6
如何使jQuery包含不区分大小写的内容,包括jQuery 1.8+?
我试图不区分大小写地使用“包含”大小写。我尝试在以下stackoverflow问题上使用该解决方案,但没有成功: 是否存在不区分大小写的jQuery:包含选择器? 为了方便起见,将解决方案复制到此处: jQuery.extend( jQuery.expr[':'], { Contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0" }); 这是错误: Error: q is not a function Source File: /js/jquery-1.4.js?ver=1.4 Line: 81 这是我正在使用的地方: $('input.preset').keyup(function() { $(this).next().find("li").removeClass("bold"); var theMatch = $(this).val(); if (theMatch.length > 1){ theMatch = "li:Contains('" + theMatch + "')"; $(this).next().find(theMatch).addClass("bold"); } }); 在相同的情况下,我对原始区分大小写的“包含”的使用没有任何错误。有人有什么想法吗?我会很感激的。

8
为什么Contains()运算符会如此大幅度降低Entity Framework的性能?
更新3:根据此公告,EF团队已在EF6 alpha 2中解决了此问题。 更新2:我已经提出了解决此问题的建议。要投票,请转到此处。 考虑一个带有一个非常简单的表的SQL数据库。 CREATE TABLE Main (Id INT PRIMARY KEY) 我用10,000条记录填充表。 WITH Numbers AS ( SELECT 1 AS Id UNION ALL SELECT Id + 1 AS Id FROM Numbers WHERE Id <= 10000 ) INSERT Main (Id) SELECT Id FROM Numbers OPTION (MAXRECURSION 0) 我为该表构建EF模型,并在LINQPad中运行以下查询(我使用的是“ C#语句”模式,因此LINQPad不会自动创建转储)。 var rows …



4
如何在xpath中使用not contains()?
我有一些这样的XML: <whatson> <productions> <production> <category>Film</category> </production> <production> <category>Business</category> </production> <production> <category>Business training</category> </production> </productions> </whatson> 而且我需要选择每个类别都不包含“业务”的产品(在此示例中仅选择第一个产品)。 xpath有可能吗?我尝试按照这些思路工作,但无济于事: //production[not(contains(category,'business'))]
72 xpath  contains 


4
jQuery:包含选择器以搜索多个字符串
假设我有: <li id="1">Mary</li> <li id="2">John, Mary, Dave</li> <li id="3">John, Dave, Mary</li> <li id="4">John</li> 如果我需要查找包含“ John”和“ Mary”的所有<li>元素,我将如何构造jQuery? 搜索单个字符串似乎很容易: $('li:contains("John")').text() 我正在寻找类似以下伪代码的内容: $('li:contains("John")' && 'li:contains("Mary")').text() 谢谢!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.