How to replace a string while while keeping a part of it using regex in Notepad++
问题 I have file with multiple records: for example: "datetime": "2018-10-10" "datetime": "2018-10-11" "datetime": "2019-01-11" "datetime": "2018-02-15" I would like to replace this string such that i can retain the date values, so something of this sort: "datetime": date("2018-10-10") "datetime": date("2018-10-11") "datetime": date("2019-01-11") "datetime": date("2018-02-15") I am able to use "datetime": ".*" to find the above records, but am stuck with replacing them in the above format help is