/* © SRSoftware 2026 */ import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; public class RegexTest { @Test public void test(){ var code = " \"that's\n"; code = code.replaceAll("()","$1$2"); assertEquals(" \n",code); } }