.{1} [a-z]
For example, find:
Sam nie wierzyłem. przykład
Skip:
Sam nie wierzyłem. Przykład
Sam nie wierzyłem... Przykład
Sam nie wierzyłem... przykład
SOLVED: How to find?
SOLVED: How to find?
Last edited by Debugger on Tue Mar 26, 2019 12:04 pm, edited 1 time in total.
Re: How to find?
?
case:przy & escape the \.
case:przy & escape the \.
Re: How to find?
\.{1} [a-z]
This regex is not completely correct because it finds:
uwierz... pogrąż się w moim szaleństwie... nie
and I want only one dot in the text
uwierz. pogrąż się w moim szaleństwie. nie
This regex is not completely correct because it finds:
uwierz... pogrąż się w moim szaleństwie... nie
and I want only one dot in the text
uwierz. pogrąż się w moim szaleństwie. nie
Re: How to find?
Something like this?
Code: Select all
regex:[^\.]\.\s[a-z]
Re: How to find?
Do you need regex: ?
(And I knew I should have copy/paste your code, as I had missed the <space> in there.
And with that, looks like the regex: would have needed a ", so regex:"\.{1} [a-z]")
Code: Select all
". " !".. "
And with that, looks like the regex: would have needed a ", so regex:"\.{1} [a-z]")
Re: How to find?
You've helped me a lot, I can now improve a lot of text.
therube - Big thanks.
Re: SOLVED: How to find?
Heh.
I was trying something funky like:
Which is not correct.
And once you see the answer, something so "logical", you then say, no why didn't I think of that!
not dot, dot, space, letter.
(One day I'll have to try to understand regex.)
I was trying something funky like:
Code: Select all
uw ". " regex:[^(\.{2})]
And once you see the answer, something so "logical", you then say, no why didn't I think of that!
not dot, dot, space, letter.
(One day I'll have to try to understand regex.)