I need to split a string let's say "asdf aA asdfget aa uoiu AA" split using "aa" ignoring the case. to
"asdf "
"asdfget "
"uoiu "
|
|
I need to split a string let's say "asdf aA asdfget aa uoiu AA" split using "aa" ignoring the case. to
|
||
|
|
|
|
There's no easy way to accomplish this using However, Example:
|
||||
|
|
|
It's not the pretties version but also works:
|
||
|
|
|
If you don't care about case, then the simplest thing to do is force the string to all uppercase or lowercase before using split.
If you care about case for the interesting bits of the string but not the separators then I would use String.Replace to force all the separators to a specific case (upper or lower, doesn't matter) and then call String.Split using the matching case for the separator.
|
||
|
|
|
|
My answer isn't as good as Noldorin's, but I'll leave it so people can see the alternative method. This isn't as good for simple splits, but it is more flexible if you need to do more complex parsing.
|
|||
|
|
|
|
In your algorithm, you can use the String.IndexOf method and pass in OrdinalIgnoreCase as the StringComparison parameter. |
|||
|