(String substituteIn, String substitution)
| 1485 | /// expression object doesn't match at any position, the original String is returned |
| 1486 | /// unchanged). |
| 1487 | public String subst(String substituteIn, String substitution) { |
| 1488 | return subst(substituteIn, substitution, REPLACE_ALL); |
| 1489 | } |
| 1490 | |
| 1491 | /// Substitutes a string for this regular expression in another string. |
| 1492 | /// This method works like the Perl function of the same name. |