I am trying to extract a string which is preceded by some constant string, the example is as follows.
string ="deleteabc@bcd"
match should be "abc@bcd"
or
string = "deletebcd@def"
match should be "bcd@def"
so as you can see i want to extract anything after the constant string “delete”,
please help, thanks in advance
abc@bcd