-
Is it possible to do a global change of double quote to single quote? I've written quite a bit of stuff using double quotes for dialog, and I've now read that single quotes are preferred. Changing them all manually is a long and arduous task. Is there an easier way? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
No, unfortunately not. You can use the search/replace feature and turn on "Search Next File", start on the first and then work your way through. It's not exactly efficient, but if you use regex, you can replace both quote symbols at the same time. Assuming you're using the standard English double quotes, turn on RegEx in the search tool, and add the symbols with a pipe between them, like Then you can just hit the replace button, or press |
Beta Was this translation helpful? Give feedback.
-
If it is sufficient to perform the conversion in the exported ODT document afterwards, you might try the "curly" extensions for LibreOffice, which can also be used to adjust other typographical details such as apostrophes or dashes. In your case, you would use the "en-US" variant to convert the quotes into the exchange format and then format everything using the "en-GB" variant. |
Beta Was this translation helpful? Give feedback.
No, unfortunately not. You can use the search/replace feature and turn on "Search Next File", start on the first and then work your way through. It's not exactly efficient, but if you use regex, you can replace both quote symbols at the same time.
Assuming you're using the standard English double quotes, turn on RegEx in the search tool, and add the symbols with a pipe between them, like
“|”
, and in the replace box just enter the single straight quite from the keyboard. That will trigger the auto-replace for the proper symbol when you hit replace:Then you can just hit the replace button, or press
Ctrl+Shift+1
until you're through the entire project, or however far you want to go.