Quantcast
Channel: Solved » contains
Browsing latest articles
Browse All 3 View Live

How to See if String Contains Substring jQuery

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

View Article


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--) { if (this[i] == obj)...

View Article


Case Insensitive Contains String C#

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

View Article
Browsing latest articles
Browse All 3 View Live