Find option
-
I have to compare a lot of strings and keep only distincts strings.
No problem if there are many identical strings but sometimes I encounter a string that is nearly the same.
My question : I propose to have a compare string option that gives for each string the percent of identical parts;Example:
France
Table
Street
England
StreetViewand we search for “Street”, so the result would be
France 0%
Table 0%
Street 100%
England 0%
StreetView 50%I have to use this for finding similar streets. After I have to change the similar streets with the unique string. It is for having an index in a database.
-
Hello, @mathenay-lankou and All,
Here is a regex solution :
- Open your list of strings. For instance :
France Table Street England StreetView-
Open the Replace dialog (
Ctrl + H )-
SEARCH
(?-is)^(Street)$|(.*(?1).*)|(.+) -
REPLACE
$0(?1 100%)(?2 50%)(?3 0%) -
Tick the
Wrap around, preferably -
Select the
Regular expressionsearch mode -
Click on the
Replace Allbutton
-
=> You should get the expected list, below :
France 0% Table 0% Street 100% England 0% StreetView 50%If I’m on the right way, I’ll explain you the regex details, next time ;-))
Best Regards,
guy038
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login