contains

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: http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/187557#187557 For convenience, the solution is copied here: jQuery.extend( jQuery.expr[':'], { ...

C# List<T>.Find(x=>x.Rectangle.Contains(Point)) FAIL

For the life of me I can't make sense why this code produces the following output... I think there is a bug or something when using List and lambda if the type exposes a Rectangle property and you use the Contains method of the rectangle object...and explicit iteration proves true while the List Find method fails.... Oneway Code publ...

VB.NET - Adding more than 1 string to .contains

I have an HTMLElementCollection that I'm going through using a For Each Loop to see if the InnerHTML contains certain words. If they do contain any of those keywords it gets saved into a file. Everything works fine but I was wondering if there is a way to simplify. Here's a sample For Each Helement As HtmlElement In elements If...

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 whole jQuery object and checking for equality, is there a straightforward way in jQuery to do this? I have tried .contains, :contains, .has an...

Selecting specific cells

$('table.listings td:contains("You")').each(function(){ $(this).children('td:nth-child(2)').addClass('highlighted'); }); I have multiple table.listings on the page but the one that contains "You" is selected and I want to addClass highlighted to the 2nd cell in each row, but the above code isn't working as I expected. Thanks ...

C# - Entity Framework - Doing a reverse CONTAINS?

I am using VS2008 (no option for VS2010 right now) and am doing a (reverse) Contains to try to match a partial string to a whole string. For instance, the urlRef = http://www2.rivworks.com/feed-test-1/?SSScrollPosition=0 and the defaultUrlDomain = www2.rivworks.com. IList<vwCompanyDetails> efMatchingUrlCompanyList = null; ... efMatchin...

CONTAINS with multiple terms over multiple columns

I'm trying to perform a CONTAINS query with multiple terms over multiple columns, like this: SELECT ID FROM Table WHERE CONTAINS((Data1,Data2,Data3), '"foo" & "bag" & "weee"') However, this query does not behave like I want it to: I want it to return all records for which all terms appear at least once in at least one of the columns, ...

jquery change == to contains?

I'm trying to alter the code below so that if "this" contains the class "search_init", it will only replace that class, as the markup itself has multiple classes applied to it. I tried ~= and ^=, but that gives me errors about missing (). $("tfoot input").focus( function () { if ( this.className == "search_init" ) { ...

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 the best type of container to use if only one task of it - to hold a number of strings and check does another one is into or does not? ...

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 table.contains(table, element) for _, value in pairs(table) do if value == element then return true end end return false en...

List.Contains returns false, even though it seems it should return true

Sub pageload() Handles Me.Load Dim bom As New List(Of Car) Dim car1 As New Car With {.Name = "Pea", .Year = 2} Dim car2 As New Car With {.Name = "Pea", .Year = 2} bom.Add(car1) MsgBox(bom.Contains(car2)) End Sub WHY??? I mean the object has the exactly same data, so why does it say it is not contained? ...

How do I perform a MOSS FullTextSqlQuery and filter people results by the Skills managed property?

I am having trouble with a MOSS FulltextSqlQuery when attempting to filter People results on the Skills Managed Property using the CONTAINS predicate. Let me demonstrate: A query with no filters returns the expected result: SELECT AccountName, Skills from scope() where freetext(defaultproperties,'+Bob') And ("scope" = 'People') Resu...

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() method, but I would prefer to use the set. ...

SQL Server Freetext and Contains functions at Godaddy webhosting

I have a webhosting at Godaddy with MS-SQL, I have a table called Product with 3 columns (Id, Title, Details) I want to implement Freetext or Contains function to search multiple words. When I execute the query: Select * from Product where freetext(Title,'Car Honda') It answers me "Cannot use a CONTAINS or FREETEXT predicate on table...

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 ...

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 documentation states that Contains performs a linear search, so it's supposed to be in O(n) and not any other faster method. However, while...

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 that contain the search terms. I don't mind if they contain more than just the search terms (most likely, they will), but they all the sea...

How can i get a paragraph from a text file in c#

I have something like this: "Content-Transfer-Encoding: base64 UEsDBBQABgAIAAAAIQDfz5sukgEAAJQGAAATANwBW0NvbnRlbnRfVHlwZXNdLnhtbCCi2AEooAAC AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" That ends with a line like this: "DwAPAPADAAA7KQAAAAA=" It is a file with MIME format, i thought about putting "ba...

jQuery not first selector found by attributeContains

Hello there, i have problem with selecting "not first selector" with using attributeContains jQuery('div[id*="abc"]:not(:first)').hide(); Thanks a lot for help ...

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 <li> Elements which contain "John" and "Mary", how would i construct the jQuery? A search for a single string seems easy: $('li:contains("John")').text() I am looking for something like...