using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using System.Collections;
public static void Main()
string partToMatch ="test Alumn othe thig";
Console.WriteLine(System.Text.RegularExpressions.Regex.IsMatch(partToMatch, "Alumn"));
string partWithNoMatch ="test Alum othe thig";
Console.WriteLine(System.Text.RegularExpressions.Regex.IsMatch(partWithNoMatch, "Alumn"));