C_Sharp/Contains Case Intensive String 메소드 Edit Diff Refresh Backlink Random Search History Help Setting Hide Show string str = "..."; if (str.Contains("...")) 이것(Contains)는 Case Intensive 찾기를 할 수 없다. 대신 IndexOf + StringComparison.CurrentCultureIgnoreCase를 사용하면 Case Intensive한 포함 찾기를 할 수 있다. 즉, public static bool ContainsCaseInsensitive(this string source, string value) { int results = source.IndexOf(value, StringComparison.CurrentCultureIgnoreCase); return results == -1 ? false : true; } .NET C Sharp Case Intensive string 이 글에는 0 개의 댓글이 있습니다. Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus