Hi @Ishan_Shelke
Try this
(?<=Order created)\s\d+
System.Text.RegularExpression.Regex.Match(Yourstring,"(?<=Order created)\s\d+").Tostring.Trim

System.Text.RegularExpression.Regex.Match(Yourstring,"(?<=Order created\s)\d+").Tostring.Trim

Hi @Ishan_Shelke
Try this
(?<=Order created)\s\d+
System.Text.RegularExpression.Regex.Match(Yourstring,"(?<=Order created)\s\d+").Tostring.Trim

System.Text.RegularExpression.Regex.Match(Yourstring,"(?<=Order created\s)\d+").Tostring.Trim
