vote up 1 vote down star

Hi all,

I'm using substring and IndexOf to locate a value within a string but my code doesn't work if the string (strOldValue) below contains any of the string in a different case. So if strOldValue contained Test or TEST then my substring fails. How would I add ToUpper in this scenario? Forgive my ignorance I'm new to .Net.

String strValue = strOldValue.Substring(strOldValue.IndexOf(@"test"));

Thanks C

flag

5 Answers

vote up 2 vote down
String strValue 
    = strOldValue.Substring(strOldValue.ToUpper().IndexOf(@"TEST"));

Note: I'm answering the question directly as asked ("How would I add ToUpper in this scenario?").

This is NOT how I would code a case-insensitive substring.

The answer by divo/TheSoftwareJedi is clearly superior.

link|flag
Note: I'm answering the question directly as asked ("How would I add ToUpper in this scenario?"). This is NOT how I would code a case-insensitive substring. – Portman Jan 14 at 0:31
Perhaps putting how you would code it would help. Sometimes the n00b questions aren't asked perfectly you know ;) – TheSoftwareJedi Jan 14 at 0:33
The answer by divo/TheSoftwareJedi is clearly superior. – Portman Jan 14 at 1:09
vote up 15 vote down

Using ToUpper, it would be done like this:

String strValue = strOldValue.Substring(
                    strOldValue.ToUpper().IndexOf(@"TEST"));

However, the easiest would be to specify that the comparison should not be done case-sensitive:

String strValue = strOldValue.Substring(strOldValue.IndexOf(@"TEST",
          StringComparison.CurrentCultureIgnoreCase));

The second comparisonType parameter of the IndexOf method specifies how to search for the value parameter: using the current or invariant culture, using a case-sensitive or case-insensitive search, or using word or ordinal comparison rules (see http://msdn.microsoft.com/en-us/library/ms224425.aspx for the full documentation).

link|flag
I'm merging my answer with yours. If you don't like it, roll it back. I think ours combined is the best – TheSoftwareJedi Jan 14 at 0:38
I edited to avoid Horizontal scroll bars - please rollback if you don't like . – Charles Bretana Jan 14 at 0:42
Ooh that's better :) – Kev Jan 14 at 0:46
Thanks for all the edits! – divo Jan 14 at 9:39
vote up 0 vote down
strValue.Substring(strValue.IndexOf("TEST", StringComparison.OrdinalIgnoreCase));
link|flag
vote up 0 vote down

As an regular expressions fan, I would use the following code:

String strValue = new Regex("test.*",
       RegexOptions.IgnoreCase).Match(strOldValue).Value;
link|flag
vote up 0 vote down

Using the String.IndexOf(String,StringComparison) is probably the best answer. Using ToUpper() in there someplace just creates an extra String object that has to be destroyed by GC. Almost all the String comparison methods have an overload that accepts a flag that states how to do comparisons.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.