Quantcast
Browsing latest articles
Browse All 2 View Live

JavaScript Case Insensitive String Contains

I’m trying to get a case-insensitive search with two strings in JavaScript working. Normally it would be like this: var string="Stackoverflow is the BEST"; var result= string.search(/best/i);...

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 2 View Live