Reputation: 193
Looking for RegExp to remove text between parentheses in dart/flutter. For example
Input...
Test Message (To Be removed)
Output
Test Message
String str = "Test Message (To Be removed)";
str.replaceAll(RegExp(<regular-expression>), '');
Upvotes: 3
Views: 2393
Reputation: 619
Hi You can use this RegExp
String str = "Test Message (To Be removed)";
var test = str.replaceAll(RegExp('\\(.*?\\)'), '');
print(test);
Upvotes: 9