Dart – how you can substitute brackets in a single RegExp?
I want to delete ‘)’ and ‘( from string’. I do know sizzling to delete them one at a time:
String strinWithoutLeftBracket = cutString.replaceAll(RegExp(r'((+)’), ”);
String strinWithoutRightBracket = strinWithoutLeftBracket.replaceAll(RegExp(r'()+)’), ”);
However how you can do it in a single replaceAll funtion?
View Reddit via Particular_Hunt9442 – View Supply