I need to extract a word from a given string. The String might come in different ways in this case. e.g:
"The Signature refers to test id 69043 abcd. The Signature refers to test id 1001"
"The Signature refers to test id
69043 defg. The Signature refers to test id 1001"
"The Signature refers to test
id 69043."
Also test id might not be in lower case always. it would be better if i could ignore whether it is lower case or upper case. it might come as Test ID, TEST ID as well
I wrote this for the moment ' test id ([0-9]+) '
i want to extract 'test id number' from these given strings. sometimes it can have multiple 'test id number' in the string. some time string has multi lines because it comes in a paragraph.