Regex - Getting string in middle

Hi @abivanth.r

(?<=Company name).*

System.Text.RegularExpressions.Regex.Match(Input,"(?<=Company name).*").Value.Trim()

Regards