Answers for "how to check if a string has words in it or if it contains numbers C#"

C#
3

if string contains number c#

"abc3def".Any(c => char.IsDigit(c));

// Or to make it shorter:
"abc3def".Any(char.IsDigit);
Posted by: Guest on August-23-2020
2

how to cjeck if a string has a word c#

using System;

public class Demo {
   public static void Main() {
      string s = "Together we can do so much!";
      if (s.Contains("much") == true) {
         Console.WriteLine("Word found!");
      } else {
         Console.WriteLine("Word not found!");
      }
   }
}
Posted by: Guest on May-08-2020

Code answers related to "how to check if a string has words in it or if it contains numbers C#"

C# Answers by Framework

Browse Popular Code Answers by Language