I have text that looks like this
HELLO WORLD (some_text, some_other_text)
I want to append a number say 16 at the end to the above text like this
HELLO WORLD (some_text, some_other_text) 16
I know this regex ^HELLO WORLD \(([a-z],[a-z])
matches it .
I am not sure how to store the regex matched in a variable and then append 16 to it.