D
D
Dmitry2017-04-21 13:51:13
Regular Expressions
Dmitry, 2017-04-21 13:51:13

How to replace single quotes between any characters in Sublime Text?

Hello.
How to replace single quotes between any characters in Sublime Text?
there are two types of line (you need to delete only in the first line)

sф''ss
sss '',

to find all single quotes between any characters, I used
\w''\w
everything finds, but how to replace it with an empty string and at the same time leave those letters that were around the quotes?
Or if it's different - remove all single quotes between any characters?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Karl Meinhoff, 2017-04-21
@ddimonn8080

Replace by Regex: (\S)''(\S) -> $1$2

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question