SOLVED: How to find?

General discussion related to "Everything".
Post Reply
Debugger
Posts: 577
Joined: Thu Jan 26, 2017 11:56 am

SOLVED: How to find?

Post by Debugger »

.{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
Last edited by Debugger on Tue Mar 26, 2019 12:04 pm, edited 1 time in total.
therube
Posts: 4604
Joined: Thu Sep 03, 2009 6:48 pm

Re: How to find?

Post by therube »

?

case:przy & escape the \.
Debugger
Posts: 577
Joined: Thu Jan 26, 2017 11:56 am

Re: How to find?

Post by Debugger »

\.{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
vanisk
Posts: 152
Joined: Sat Oct 27, 2018 11:33 am

Re: How to find?

Post by vanisk »

Something like this?

Code: Select all

regex:[^\.]\.\s[a-z]
therube
Posts: 4604
Joined: Thu Sep 03, 2009 6:48 pm

Re: How to find?

Post by therube »

Do you need regex: ?

Code: Select all

". "   !".. "
(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]")
Debugger
Posts: 577
Joined: Thu Jan 26, 2017 11:56 am

Re: How to find?

Post by Debugger »

vanisk wrote: Tue Mar 26, 2019 11:29 am Something like this?

Code: Select all

regex:[^\.]\.\s[a-z]
You've helped me a lot, I can now improve a lot of text. ;)

therube - Big thanks.
therube
Posts: 4604
Joined: Thu Sep 03, 2009 6:48 pm

Re: SOLVED: How to find?

Post by therube »

Heh.

I was trying something funky like:

Code: Select all

uw ". " regex:[^(\.{2})]
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.)
Post Reply