That just remove that bit of the text, it doesn’t grab it. You’d want a string pattern here; something that captures the relevant bit: local whatever = yourString:match("Application Results: (%S+)").
The “%S” tells it to look for non-whitespace characters, the “+” tells it to look for multiple of those characters, and the parentheses tell it to capture just that bit.