17
1
using Newtonsoft.Json.Linq;
2
using System;
3
using System.Collections.Generic;
4
using System.Collections;
5
public class Program
6
{
7
public static void Main()
8
{
9
string partToMatch ="test Alumn othe thig";
10
11
Console.WriteLine(System.Text.RegularExpressions.Regex.IsMatch(partToMatch, "Alumn"));
12
13
string partWithNoMatch ="test Alum othe thig";
14
Console.WriteLine(System.Text.RegularExpressions.Regex.IsMatch(partWithNoMatch, "Alumn"));
15
16
}
17
}
Cached Result
True
False
False