I have a java question. What are some of the ways in java that I could remove just the phrase “Unidentified Issue:
” from the string below? The search for the phrase to be removed should be case-insensitive.
“EUB Error - Recs: Unidentified Issue: Service connection is denied.
”
So, basically:
Input string is: “EUB Error - Recs: Unidentified Issue: Service connection is denied.
”
Output string should should be: “EUB Error - Recs: Service connection is denied.
”
Any help would be greatly appreciated!
thank you so much in advance!