how to look for substring in string in c#
String phrase = "this is the ultimate string";
Console.WriteLine(phrase.Contains("this")); //returns True
Console.WriteLine(phrase.Contains("python")); //returns False
how to look for substring in string in c#
String phrase = "this is the ultimate string";
Console.WriteLine(phrase.Contains("this")); //returns True
Console.WriteLine(phrase.Contains("python")); //returns False
c# find substring in string
string fullName = "John Doe";
bool nameInFullName = fullName.Contains("John");
// nameInFullName is true
c# substring find word
public static string GetSubstring(string l_Source, string l_FindCharacter)
{
if (!l_Source.Contains(l_FindCharacter)) return string.Empty;
int End = l_Source.IndexOf(l_FindCharacter, 0) + l_FindCharacter.Length;
return l_Source.Substring(0, End - 1);
}
//string l_Data = GetSubstring("100000.00", "."); //Test //100000
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us