Suggest

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
606680
Posts: 3
Joined: Tue Apr 25, 2017 9:59 am

Suggest

Post by 606680 »

1.China has both simplified and traditional text, hoping to add a function, while searching for two kinds of text. (Equivalent to English, uppercase letters, lowercase letters)

E.g:
simplified traditional
看见 看見
说话 說話
杨 楊
Image

2.Want to do a feature, hide the duplicate "file list"
Image

Thank you
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: Suggest

Post by void »

1).
You might have some luck with regex and searching for a range of characters:

Code: Select all

Block                                   Range       Comment
CJK Unified Ideographs                  4E00-9FFF   Common
CJK Unified Ideographs Extension A      3400-4DBF   Rare
CJK Unified Ideographs Extension B      20000-2A6DF Rare, historic
CJK Unified Ideographs Extension C      2A700–2B73F Rare, historic
CJK Unified Ideographs Extension D      2B740–2B81F Uncommon, some in current use
CJK Unified Ideographs Extension E      2B820–2CEAF Rare, historic
CJK Compatibility Ideographs            F900-FAFF   Duplicates, unifiable variants, corporate characters
CJK Compatibility Ideographs Supplement 2F800-2FA1F Unifiable variants
http://stackoverflow.com/questions/1366 ... in-unicode
I'm unsure if unicode splits Chinese characters up into tranditional and simplified sets.

To search for these sets, use the following Everything searches:
regex:[\x{4e00}-\x{9fff}]
regex:[\x{3400}-\x{4DBF}]
regex:[\x{20000}-\x{2A6DF}]
regex:[\x{2A700}-\x{2B73F}]
regex:[\x{2B740}-\x{2B81F}]
regex:[\x{2B820}-\x{2CEAF}]
regex:[\x{F900}-\x{FAFF}]
regex:[\x{2F800}-\x{2FA1F}]

2).
Might be possible in a future release to show only duplicated results or to hide duplicate results.
To hide filelist results, include the following in your search:
!filelistfilename:
606680
Posts: 3
Joined: Tue Apr 25, 2017 9:59 am

Re: Suggest

Post by 606680 »

Thank you for your answer.Because through Google translation, write so much for you can hope to understand what I mean.

1.I translated by Google, do not know what you mean. Simplified and traditional text should not be the same as Unicode, often in Hong Kong and Taiwan to download things, on the mainland of China, the same file because of the simplified and traditional is not the same, resulting in repeated downloads.
Google search automatically converts simplified and traditional, converted to local text.
Some small software can convert simplified and traditional, access to the source code and add to the Everything should be able to achieve)
China has a large population, Everything can identify and search for simplified and traditional, it is more perfect.

Image

2.Second functional reasons, because now the hard disk is very fragile, usually do not use it, I will close the hard disk, and "file list" build directory, "file list" very good, when the defect is open the hard disk, will repeat, it is best to be a hidden repetition function, so perfect.
Post Reply