-3
如何使用正則表達式來獲取()中的文本? 例如:正則表達式搜索文本中的字符串
input: test("abc") output: "abc"
input: test("ab)c") output: "ab)c"
input: test("ab)c" + "asd") output: "ab)c" + "asd"
input: test("ab)c" + "uni()t").test output: "ab)c" + "uni()t"
input: test("ab)c").split("/") output: "ab)c"
顯示** **預期輸出 – RomanPerekhrest