csharp / linq > 大文字小文字関係なしで同じ文字をSelect > .Where(o => string.Compare(o, term, StringComparison.CurrentCultureIgnoreCase) == 0);
hello / Hello / heLLo をまとめてSelectしたい。
try1 (ToLowerInvariant()使用)
参考
https://msdn.microsoft.com/ja-jp/library/bb546166.aspx
ToLowerInvariant()
で小文字に変換したもの同士で == 演算すればいい。
using System;
using System.Linq;
public class Test
{
public static void Main()
{
string [] test = new string[3];
test[0] = "hello";
test[1] = "Hello";
test[2] = "heLLo";
string term = "hellO";
var strs = test
.Where(o => o.ToLowerInvariant() == term.ToLowerInvariant());
foreach(var x in strs) {
Console.WriteLine(x);
}
}
}
結果
Success time: 0.05 memory: 24008 signal:0
hello
Hello
heLLo
try2 (string.Compare()使用; こちらの方が良い)
@Temarin_PITA さんに教えていただいた方法。
コードはTemarin_PITAさんのコメントを参照。
LINQを使う場合、インスタンスメソッドやnullなどの考慮が必要でした。今後はそういう部分も意識していければと思います。
Author And Source
この問題について(csharp / linq > 大文字小文字関係なしで同じ文字をSelect > .Where(o => string.Compare(o, term, StringComparison.CurrentCultureIgnoreCase) == 0);), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/e0b87c05bc4f0bcee659著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .