What is the result

Report a typo

Given a regular expression, a string and an operation:

String regex = "\\dabc";
String str = "aab3bc4abcabc2abc";
String result = str.replaceAll(regex, "");

Find the resulting string.

Select one option from the list
___

Create a free account to access the full topic