Tagged Questions
The ignore-case tag has no wiki summary.
9
votes
4answers
9k views
How can I ignore case in a regex?
I have an ASP.NET RegularExpressionValidator that checks file extensions. Is there a quick way I can tell it to ignore the case of the extension without having to explicitly add the upper case ...
4
votes
1answer
504 views
Getting gVim's vimdiff to ignore case
I am trying to compare two assembly files where one was written all caps and the other in lowercase. Many lines are identical up to case and whitespace.
I tried the following, while two buffers in ...
3
votes
1answer
1k views
Get items from sharepoint list by Title field with ignore care using Caml or SPQuery
I want to get data from SharePoint List using CAML and filtered by Title with ignore case like
<Query>
<Where>
<Eq>
<FieldRef Name='Title' />
...
2
votes
2answers
1k views
How to ignore case in String.replace
string sentence = "We know it contains 'camel' word.";
// Camel can be in different cases:
string s1 = "CAMEL";
string s2 = "CaMEL";
string s3 = "CAMeL";
// ...
string s4 = "Camel";
// ...
string s5 = ...
1
vote
4answers
92 views
Finding an item in a List<T>
I have the follow example:
public class Commands
{
public int ID { get; set; }
public List<string> Alias { get; set; }
}
public class UserAccess
{
public int AccessID { get; set; }
...
1
vote
8answers
154 views
How to use StringComparison for strings in C#?
string body = Selenium.GetBodyText();
if (body.Contains("software", StringComparison.CurrentCultureIgnoreCase))
{
//do something
}
I get a string does not contain a definition for Contains ...
1
vote
6answers
54 views
JavaScript & HTML Forms Elements
Using the HTML Form Elements, I would like to allow an input of "numeric" and it's decimal seperator characters into a textfield (either textarea or an input type="text") - ONLY!
Any non-numeric ...
0
votes
1answer
18 views
apache-camel file2 antInclude ignore-case
I need to poll a directory and narrow the files with a case insentive expression.
With version 2.10 camel adds support for antInclude which is what I look into, unfortunately antInclude is case ...
0
votes
1answer
254 views
Ignore case using boost::regex_search
How to using boost::regex_search with ignore case flags or constants on C++?
You can help me if you post easy example.
Thanks!
0
votes
5answers
305 views
user input ignore case
I am reading a user input. I was wondering how I would apply equalsIgnoreCase to the user input?
ArrayList<String> aListColors = new ArrayList<String>();
aListColors.add("Red");
...
0
votes
2answers
844 views
Linq: using StringComparer with GroupBy/Distinct in query syntax
I have this (XLinq) query and was wondering how to convert it to the query syntax:
var grouped = doc.Descendants()
.GroupBy(t => t.Element(ns + "GroupingAttr").Value, ...