Tagged Questions
The contains tag has no wiki summary.
307
votes
9answers
294k views
JavaScript: string contains
How can I check if one string contains another substring in JavaScript?
Usually I would expect a String.contains() method, but there doesn't seem to be one.
Edit: thanks for all the answers :) ...
206
votes
10answers
42k views
Case insensitive contains(string)
Is there a way to make the following return true?
string title = "ASTRINGTOTEST";
title.Contains("string");
There doesn't seem to be an overload that allows me to set the case sensitivity..
...
29
votes
13answers
80k views
How do I use LINQ Contains(string[]) instead of Contains(string)
I got one big question.
I got a linq query to put it simply looks like this:
from xx in table
where xx.uid.ToString().Contains(string[])
select xx
The values of the string[] array would be numbers ...
20
votes
8answers
23k views
Javascript: Determine whether an array contains a value
i need to determine if a value exists in an array using javascript.
I am using the following function:
Array.prototype.contains = function(obj) {
var i = this.length;
while (i--) {
...
19
votes
5answers
6k views
How to check that an element is in a std::set?
How do you check that an element is in a set?
Is there a simpler equivalent of the following code:
myset.find(x) != myset.end()
14
votes
1answer
429 views
Why is List<T>.IndexOf() a lot faster than List<T>.Contains()?
I have List which has 150K elements. Average time of work IndexOf() is 4 times lower than Contains(). I tried to use List of int. For List of strings IndexOf is a bit faster.
I found only one main ...
14
votes
2answers
5k views
How do I make jQuery Contains case insensitive?
I'm trying to use "contains" case insensitively. I tried using the solution at the following stackoverflow question, but it didn't work:
...
13
votes
5answers
225 views
Selectively disable subsumption in Scala? (correctly type List.contains)
List("a").contains(5)
Because an Int can never be contained in a list of String, this should generate an error at compile-time, but it does not.
It wastefully and silently tests every String ...
13
votes
2answers
30k views
Jquery: How to see if string contains substring
I have a shoppingcart that displays product options in a dropdown menu, and I want to make some other fields on the page only visible if they select "Yes" in the previous option. The problem is that ...
12
votes
2answers
466 views
What is the Big-O of String.contains() in Java?
I'm working on a project, and need to optimize the running time. Is String.contains() runtime the same as TreeSet.contains(), which is O(logN)?
The reason I'm asking is I'm building a ...
12
votes
4answers
10k views
Using contains() in LINQ to SQL
I'm trying to implement a very basic keyword search in an application using linq-to-sql. My search terms are in an array of strings, each array item being one word, and I would like to find the rows ...
11
votes
5answers
317 views
Why do we have contains(Object o) instead of contains(E e)?
Is it to maintain backwards compatibility with older (un-genericized) versions of Collection? Or is there a more subtle detail that I am missing? I see this pattern repeated in remove also ...
10
votes
7answers
3k views
What's the fastest way to check List<String> contains a unique String?
It's in Java. Basically I have about 1,000,000 strings, for each request I have to check a String is belonged to the list or not.
I'm worried about the performance, so what's the best method? ...
10
votes
3answers
6k views
jQuery :contains selector to search for multiple strings
Assuming i have:
<li id="1">Mary</li>
<li id="2">John, Mary, Dave</li>
<li id="3">John, Dave, Mary</li>
<li id="4">John</li>
If i need to find all ...
9
votes
3answers
6k views
How to check if a table contains an element in Lua?
Is there a method for checking if a table contains a value ? I have my own (naive) function, but I was wondering if something "official" exists for that ? Or something more efficient...
function ...
9
votes
4answers
728 views
ICollection<T>.Contains on custom types
If I have a (reference - does it matter?) type MyType which does not override the Equals method, what heuristics will be used when determining if an ICollection<MyType> contains a given instance ...
8
votes
11answers
882 views
Finding numerical substrings mathematically, without string comparison
This originally was a problem I ran into at work, but is now something I'm just trying to solve for my own curiosity.
I want to find out if int 'a' contains the int 'b' in the most efficient way ...
7
votes
4answers
205 views
High performance “contains” search in list of strings in C#
I have a list of approx. 500,000 strings, each approx. 100 characters long. Given a search term, I want to identify all strings in the list that contain the search term. At the moment I am doing this ...
7
votes
2answers
121 views
LIKEs and ORs and stuff in Linq
I'm trying to write a linq-to-sql query using || that behaves the same way as the OR in SQL when combined with a LIKE/Contains.
SQL:
SELECT * FROM Users WHERE GroupNumber = 'A123456' OR (FirstName ...
7
votes
5answers
2k views
.Contains on a list of custom class objects
I'm trying to use the .Contains function on a list of custom objects
This is the list:
List<CartProduct> CartProducts = new List<CartProduct>();
And the CartProduct:
public class ...
7
votes
3answers
6k views
C# modify List.Contains behavior
I have a List<MyObj> with the class MyObj : IComparable. I wrote the method CompareTo in the MyObj class per the IComparable interface, but when I use the ...
6
votes
1answer
372 views
C# Lambda .Contains() on multiple properties
We are using the following to generate a search query (using NHibernate).
GetAll(x => x.Username.ToUpper().Contains(SEARCH)).ToList();
Is it possible to do a search (Contains) for multiple ...
6
votes
4answers
2k views
Java Hashset.contains() produces mysterious result
I don't usually code in Java, but recently I started not having a choice. I might have some major misunderstanding of how to properly use HashSet. So it might be possible something I did is just plain ...
6
votes
12answers
452 views
How can I make my function run as fast as “Contains” on an ArrayList?
I can't figure out a discrepancy between the time it takes for the Contains method to find an element in an ArrayList and the time it takes for a small function that I wrote to do the same thing. The ...
6
votes
6answers
446 views
What is the linq equivalent to the SQL IN operator
With linq i have to check if a value of a row is present in a array.
The equivalent of the sql query:
WHERE ID IN (2,3,4,5)
How can i do?
thanks
6
votes
4answers
1k views
jQuery: Check if jQuery object contains exact DOM element
I have a reference to a DOM element, and a jQuery object which is the result of a selector, and I want to check if that specific DOM element is in that jQuery object. Short of looping through the ...
6
votes
3answers
4k views
LINQ: Entity string field contains any of an array of strings
I want to get a collection of Product entities where the product.Description property contains any of the words in a string array.
It would look something like this (result would be any product ...
6
votes
5answers
13k views
Best way to use contains in an ArrayList in Java?
I have an ArrayList in Java which is made up of a type containing two strings and an integer. I can successfully test if one element of this ArrayList equals another but I find that the contains ...
5
votes
4answers
72 views
How to avoid writing every variation of a simple “if contains” statement for different strings
For example if in a textbox that is full of many different part numbers from a material list for computer parts, I only want one type of cat5 cable at any given time, and if two different types are ...
5
votes
4answers
254 views
Why does the Contains() operator degrade Entity Framework's performance so dramatically?
Consider a SQL database with one very simple table.
CREATE TABLE Main (Id INT PRIMARY KEY)
I populate the table with 10,000 records.
WITH Numbers AS
(
SELECT 1 AS Id
UNION ALL
SELECT Id + 1 ...
5
votes
1answer
1k views
In C#, best way to check if stringbuilder contains a substring
I have an existing StringBuilder object, the code appends some values and a delimiter to it. Now I want to modify the code to add the logic that before appending the text I want to check if it really ...
5
votes
5answers
353 views
What does Collection.Contains() use to check for existing objects?
I have a strongly typed list of custom objects, MyObject, which has a property Id along with some other properties.
Let's say that the Id of a MyObject defines it as unique and I want to check if my ...
5
votes
2answers
698 views
Is HashSet<T> the fastest container to look up in?
I need to check that specific string contains in the set of others:
private bool Contains(string field)
{
return this.Fields.Contains(field); // HashSet<string> local property
}
What is ...
5
votes
5answers
2k views
Faster way to do a List<T>.Contains()
I am trying to do what I think is a "de-intersect" (I'm not sure what the proper name is, but that's what Tim Sweeney of EpicGames called it in the old UnrealEd)
// foo and bar have some identical ...
4
votes
2answers
100 views
Javascript Regular Expressions with jQuery Contains Regex Extension
I'm using an extension for jQuery "contains", shown below:
$.extend($.expr[':'],{
containsExact: function(a,i,m){
return $.trim(a.innerHTML.toLowerCase()) === m[3].toLowerCase();
},
...
4
votes
4answers
70 views
contains with collator
I have to test whether a string is included in another one but without considering case or accents (French accents in this case).
For example the function must return true if I search for "rhone" in ...
4
votes
4answers
86 views
Linq and Contains
First example which works:
public class Test
{
public int ID;
public string Name;
}
List<int> list1 = Load1();
List<Test> list2 = Load2();
var query = list2.Where(c => ...
4
votes
6answers
101 views
String list remove
I have this code:
List<string> lineList = new List<string>();
foreach (var line in theFinalList)
{
if (line.PartDescription != "")
lineList.Add(line.PartDescription + " " + ...
4
votes
3answers
97 views
Jquery contains text and make it blue
The designer want to make the company name in blue, but the company name is embed in the text without any html element surrounding it.
I want to be able to find a string and set only that string to ...
4
votes
5answers
99 views
What is a C++ container with a “contains” operation?
I want to use a structure in which I insert integers, and then can ask
if (container.contains(3)) { /**/ }
There has to be something like this.
4
votes
1answer
122 views
Can I use an embedded lambda with the Contains method?
I want to filter a list with FindAll
If I write:
.FindAll(
p => p.Field == Value &&
p.otherObjList.Contains(otherObj));
it's ok, but if I write
.FindAll(
p => p.Field ...
4
votes
4answers
2k views
CALayerInvalidGeometry exception during HTML5 video play (iOS 4.2 Problem)
After updating to the iOS 4.2 SDK, i receive the following exception in my app:
Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [nan 22]'
...
4
votes
6answers
1k views
How can I extract ArrayList from HashMap and loop through it in Java?
I have set up a HashMap like so:
Map<String, ArrayList<String>> theAccused = new HashMap<String, ArrayList<String>>();
... and I populate this by storing for every name ...
4
votes
3answers
601 views
Treeset.contains() problem
So I've been struggling with a problem for a while now, figured I might as well ask for help here.
I'm adding Ticket objects to a TreeSet, Ticket implements Comparable and has overridden equals(), ...
4
votes
4answers
342 views
Java - Is Set.contains() broken on OpenJDK 6?
I've come across a really strange problem. I have written a simple Deck class which represents a standard 52 card deck of playing cards. The class has a method missingCards() which returns the set of ...
4
votes
6answers
1k views
Any big difference between using contains or loop through a list?
Performance wise, is there really a big difference between using:
ArrayList.contains(o) vs foreach|iterator
LinkedList.contains(o) vs foreach|iterator
Of course, for the foreach|iterator loops, ...
4
votes
2answers
9k views
How does contains() in PL-SQL work?
Have a lot of unnecessary results using contains() method in my query. Don't tell me to use like or something else. It is hardcoded and couldn't be changed.
4
votes
5answers
4k views
how to find and return objects in java hashset
According to the HashSet javadoc, HashSet.contains only returns a boolean. How can I "find" an object in a hashSet and modify it (it's not a primitive data type)?
I see that HashTable has a get() ...
4
votes
1answer
2k views
Stack overflow in LINQ to SQL and the Contains keyword
I have an Extension method which is supposed to filter a Queryable object (IQueryable) based upon a collection of Ids....
Note that IQueryable is sourced from my database via a LinqToSql request
...
4
votes
1answer
1k views
Compiled queries and “Parameters cannot be sequences”
I thought that compiled queries would perform the same query translation as DataContext. Yet I'm getting a run-time error when I try to use a query with a .Contains method call. Where have I gone ...