There are three kind of strings:
- string(1)_2013-02-15
- anotherString(2)_2013-02-15
- yetAnotherString(3)_2013-02-15
Up to the opening parenthesis each string is constant. The number between the parenthesis will change and it can be one, two or three characters in length for all three strings. The date would be the current day's date.
I want to remove the parenthesis and the number between them. The desired result is as follows:
- string_2013-02-15
- anotherString_2013-02-15
- yetAnotherString_2013-02-15
Any help would be appreciated.