Regex reg = new Regex("1(.*)4");Match matches = reg.Match(bigstring);string matchstr = matches.Groups[0].Value;