The `contains` operator/method is used to determine if an entity collection contains an element with a particular property.

learn more… | top users | synonyms

1
vote
1answer
42 views

perl test content to see if contains HTML

I would like to test content that is submitted by users to see if contains HTML or not, and I'd prefer to do it without having to write my own regex. Does anyone know of a module that does this or a ...
0
votes
2answers
67 views

How to create a List<class> and verify if list contains item already

Easier if I show I am trying to do: public struct Server { public string ServerName; public string SiteName; } List<Server> targetServerList = GetTargetServerList(); targetServerList ...
1
vote
3answers
30 views

Possible with one MySQL query? “column contains any of the array's values”

Basically I want to check whether a mysql text column, which contains comma-separated values, contains any of the values contained in an array. I know this can be done with a loop and multiple ...
0
votes
0answers
41 views

Horspool's method Vs. Java's contains method for String matching. Is Horspool's method always slower?

So I wrote Horspool's algorithm for String/pattern matching in java. My code is written below. . . public static boolean horspool(final String str, final String pattern) { //assumed key.length() ...
-2
votes
1answer
45 views

Java equals or contains method?

I have a stack (Records) with the elements below: first 20130512142202 second 20130512142204 third 20130512142206 fourth 20130512142209 fifth 20130512142212 and I want to check if a String ...
1
vote
2answers
35 views

XPath for text between tags

I want to verify a xpath with canoo webtest. My HTML looks like this: <div id="myDivId">Firstname Lastname</div> The space between the firstname and the lastname was created with a ...
0
votes
0answers
13 views

Display a single out come either or if certain parameters are in a job list

I would like a query that will show only the car number if certain fix numbers are in the grouping of the jobdate. I keep getting the entire record lines, not just the car. So if Fix# 25 or 50 are in ...
0
votes
0answers
14 views

How do I hide a parent if div does not contain content?

I have a script that matches user input to filter and hide parents with divs containing that content. I want to use this same script to hide parent that do NOT contain the inputed content. I tried ...
1
vote
1answer
17 views

Linq to SQL search for wildcard in double

In a Linq to SQL I am trying to search for a value of the type double: var q = from a in db.GetTable<HKKS_Medlemmer>() from g in db.HKKS_Get_grader_Kun_Grad(Convert.ToInt32(a.Skif)) ...
0
votes
0answers
22 views

check variable contains value if same value exists then never append

this is my xml:- <root> <val1 entity_id="1" value="foo" /> <val2 entity_id="2" value="bar" /> </root> here i am try to get entity_id using xpath:-(this xpath):- <script ...
-3
votes
5answers
71 views

Checking if a specified position in a string contains a letter or a digit

I wish to check whether a string contains a letter or a digit in a specified position. Here's the problem: I have a input string of length 2. The string is of the form "a1". I'm making a validation ...
1
vote
1answer
70 views

Does selenium webdriver support css contains?

I've read that "the css2 contains function is not in css3, however selenium supports the superset of css 1,2 and 3." Will contains be supported by Selenium Server using webDriver or it only ...
0
votes
1answer
17 views

How do you use the jQuery contains function with object variables?

I know this works: var $object = $('*:contains("I am a simple string")'); So why doesn't this work as well? var $object = $someObject:contains("I am a simple string");
0
votes
0answers
26 views

Higlight all the cell which contains checked checkbox

I have found a JQuery code that make the closest cell of the checked checkbox as highlighted and i also have a javascript that let me select multiple checkbox by ckecking one box. And i use both code ...
0
votes
2answers
13 views

LINQ Get Grouped ID by condition

Hi I have a List so: A 1 A 2 A 3 A 4 B 1 B 2 C 1 I want to select the letter that contains AT LEAST these 3 numbers: 1,2,3 So in this case would be selected the letter A. ...
0
votes
1answer
18 views

How to get the source of the ActionEvent in an ArrayList

I'm trying to make a slide puzzle on java. Now I have a little problem. I want to know the index of a button I clicked, that sits in an ArrayList. The ArrayList buttons, contains a number of ...
1
vote
3answers
30 views

checking (if) and selecting children/parent in jquery

My html: <div class="red-box"> <h2> <a href="#">My Cars</a> </h2> <div class="block_left layout2"> <div class="part1"> <div ...
1
vote
5answers
123 views

Check if java arraylist contains object

Consider I have object A{int elementA; int elementB}. These objects are stored in an arraylist, ArrayList<A> listObj. How can I perform contains operation just using part of object A ...
0
votes
1answer
67 views

Check if array contain specific string

I am saving different codes in a array and now want to check if one code is in the array. I searched a bit around but nothing working... Here you see how my array looks: 2013-04-28 12:43:23.877 ...
0
votes
1answer
25 views

How to project the $in operator as a boolean in mongodb?

feed = coll.aggregate([ {'$project' :{'Upvoted' : {'Upvoters' : {'$in' : [ObjectId(userid)]} }}}, {'$match' :{ '$or': [ {"_id": ObjectId(userid) }, {"Friends": ...
0
votes
1answer
34 views

return true or false in a mysql subselect if another field contains a string

I'm trying to return a value of true or false (or yes/no, etc.) as part of a select if a particular field in a table contains a substring. Select the ID, name, and whether or not a person is ...
0
votes
5answers
161 views

Java: Contains() method

Trying to implement contains() method without using built-in method contains(). Here is my code: public static boolean containsCS(String str, CharSequence cs) { //char[] chs = str.toCharArray(); ...
0
votes
2answers
64 views

How to detect special characters in an edit text and display a Toast in response (Android)?

An apology for my bad English, I'm using google translate. I'm creating an activity in which users must create a new profile. I put a limit to edit text of 15 characters and I want that if the new ...
1
vote
2answers
64 views

Powershell Only Add to Array if it doesn't exist

In PowerShell v2, I'm trying to add only unique values to an array. I've tried using an if statement that says, roughly, If (-not $Array -contains 'SomeValue'), then add the value, but this only ever ...
0
votes
1answer
57 views

array contains() method misbehaving

I have the following Java method: public boolean zonesAllAccountable(String messyZones) { ArrayList<String> zonesAndLMS = getArrayListOfZones(messyZones); ArrayList<String> lmss = ...
3
votes
1answer
148 views

SQL Server Full-Text Search for exact match with fallback

First off there seems to be no way to get an exact match using a full-text search. This seems to be a highly discussed issue when using the full-text search method and there are lots of different ...
1
vote
6answers
73 views

Using Java's contains(Object) method or similar for collections (eg ArrayList) without actually having the object

I recognise that sounds a bit mad but to explain what I mean: I have an ArrayList containing several quite slow initialisation objects and I want to see if the ArrayListalready contains a particular ...
4
votes
2answers
79 views

Java: Implement String method contains() without built-in method contains()

I'm trying to implement String method contains() without using the built-in contains() method. Here is what I have so far: public static boolean containsCS(String str, CharSequence cs) { char[] ...
1
vote
4answers
106 views

Does the contains() method in Java ArrayList use binary search?

Does the contains() method in Java ArrayList use binary search? Or do I need to use Collections to do this instead?
0
votes
1answer
25 views

jquery use :contains to edit css for other divs

I am trying to use :contains to change the css styles of a div if another div contains certain words, for example I can use this code to find change the parent, but how can I do it for a div that isnt ...
0
votes
4answers
74 views

Search thru arrayList using .contains()

Im trying to search thru my arrylist using .contains(). This is the method I have in my window class: public void findByID() { int customer = Integer.parseInt(findCustomerField.getText()); ...
3
votes
13answers
215 views

C# String contains

Fooling a bit around with string.Contains() Is it possible to have the contain function find if the string contains 2 words or more? This is what im trying to do; string d = "You hit someone for 50 ...
0
votes
4answers
99 views

C# determine if all characters in a string are the same

I have a situation where I need to try and filter out fake SSN numbers. From what I've seen so far if they are fake they're all the same number or 123456789. I can filter for the last one, but is ...
-2
votes
1answer
100 views

ArrayList.contains() method not work

I have an ArrayList ordineDopoModifica public static ArrayList<Persona> ordineDopoModifica = new ArrayList<Persona>(); This is the Persona class: class Persona { public String nome; ...
0
votes
2answers
94 views

C# implement raven db full text search by the part of word

I have a grid and I need to support full text search. I need to support search not only by start with and end with, but I need to support search by the part of word. For example if I have "MyWord", I ...
0
votes
3answers
24 views

SQL query isn't displaying correct data

I have this table: Recipe = (idR, recipeTitle, prepText, cuisineType, mealType) Ingredient = (idI, ingrDesc) RecipIngr = (idR*, idI*) and I'm trying to display idR and recipe title that ...
0
votes
2answers
599 views

Excel: Statement for checking IF multiple cells CONTAIN certain text

I am sitting with somewhat of a simple problem that I have yet to find an answer for. I have a column of values, and then I have two columns with simple marking like just an 'X'. A ...
2
votes
1answer
83 views

Cannot use IEnumerable<string> in predicate [duplicate]

I have the following code... examinerSpec.Predicate = examinerSpec.AndExpression(examinerSpec.Predicate, centreTemp =>centreTemp.ExaminerCentreAssociations.Any( examinerTemp ...
0
votes
2answers
91 views

Checking if a message contains a string

I have have a class that check id a phrase is contained in a message, I tried to do it with Matcher and Pattern and with String.contains(), but the results returned are odd. Here is the class: ...
-3
votes
1answer
78 views

Java RecursiveLinkedList contains method [closed]

I am working on a simple linkedList class, one of the requirement for this class is to use recurs to implement the contains method, add method and remove method. Based on example I found I have ...
0
votes
0answers
61 views

check if array contains all array values from another array in C

I tried to make a program that will check if an an array contains all the array values from another array. So, if that's true, the program will return 1 using a value for it. If it isn't true, it will ...
1
vote
2answers
64 views

check an array for characters

I have got a method that reads a file, puts each word into an array of strings and then adds each word to a tree. I want to modify it so that the word is not added to the tree if it contains NON ...
0
votes
1answer
39 views

Using :contains in jquery for xml parsing

I am trying to take data from a large .xml file which contains quite unhelpful tags. These tags are all pretty much the same, and there is nothing I can do about the xml output. These xml documents ...
0
votes
4answers
101 views

Effective linq contains with anonymous type

I have a collection of anonymous objects created like this: var srcCategories = srcSet.Categories.Select(c => new { ApplicationId = c.IsGLobal ? (long?)null : c.App.Id, c.Name }); Note ...
0
votes
2answers
85 views

boost::algorithm::contains std::vector<long> & long value

I am using boost::algorithm::contains(std::vector<long>, long value) and receiving a host of errors. std::vector<long> instance; long byteIndex; // (Perhaps more code?...) ...
0
votes
3answers
91 views

arraylist.contains(string) not evaluating string

Strangely enough, I have a feeling I'm missing something here with using ArrayList.contains(Object o), but it's not coming to me right at the moment, can someone point me in the right direction? I ...
0
votes
1answer
146 views

Java - Opposite of .contains (does not contain)

I have a if statement and I want to check if the variable 'inventory' contains 'bread' but doesn't contain water. if(inventory.contains("bread")) # <------Now I want to put 'but doesn't ...
0
votes
1answer
41 views

In SOLR, how can I query to find an indexed keyword inside a user provided search query?

I am running SOLR 3.6, and have documents that have tags indexed. When a user enters a search phrase, I'd like to be able to find documents with tags contained inside that query. E.g, a user ...
0
votes
0answers
116 views

JQGrid with xmlstring datatype, master detail, dynamic filter

UPDATED: Resolved, with an xmlreader like this: { id : "rowid", repeatitems : false, root : "response>claims>claim>units", row : ...
1
vote
1answer
45 views

javaScript issue in IE but not Firefox

I have an MVC3 C# .Net web app. I am firing a javaScript method of a submit button on the onclick event. It works just fine in Firefox, I see the confirm box, but not in IE 8. In IE it is always ...

1 2 3 4 5 14