Regular expression replace

kate, regex, text-editor

Solution

search for `"(\w+)"`, replace with `:\1`

Problem

I have to replace `"something"` in file with `:something`. My editor is kate can anyone suggest a search expression and placeholder for that. ``` Example Input "code" "name" "remark" Output :code :name :remark ```

Original source