3
votes
4answers
1k 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 …
0
votes
1answer
74 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' />
…
0
votes
2answers
274 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, …
