I Required a Regex for the below input string:
Input data - ANALYSE/xxxxxxxx:
In the string xxxxxx is any characters. Need a regex accordingly to figure it out
At the end the colon is there but i need to replace entire 'ANALYSE/xxxxxxxx:' with String.empty.
I want to replace the above string with String.empty
The regex which i used 'ANALYSE/.*' is not getting.
Provide me a regex.