Search code examples
flutterdartregexp-replace

Remove text between parentheses in dart/flutter


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>), '');

Solution

  • Hi You can use this RegExp

    String str = "Test Message (To Be removed)";
    var test = str.replaceAll(RegExp('\\(.*?\\)'), '');
    print(test);