This regex will match the string you provided: (abc\().+(\)\.def\().+(\)). And using backreferences $1$2$3 will produce abc().def().
確定! 回上一頁