how can I enable asiatic characters?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
giuliastar
Posts: 365
Joined: 14 Sep 2013 07:22

how can I enable asiatic characters?

Post by giuliastar »

Hi

i have a folder with jappanese caracters , i can't view in xyplorer
why?
should i enable some option?

thanks

admin
Site Admin
Posts: 66678
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: how can i enble asiatic caraters?

Post by admin »

:veryconfused: Unicode is supported since many many years. Please show screenshot.

PeterH
Posts: 2830
Joined: 21 Nov 2005 20:39
Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%

Re: how can i enble asiatic caraters?

Post by PeterH »

Maybe the selected font doesn't support japanese characters?

giuliastar
Posts: 365
Joined: 14 Sep 2013 07:22

Re: how can i enble asiatic caraters?

Post by giuliastar »

admin wrote::veryconfused: Unicode is supported since many many years. Please show screenshot.
hi
is there a scipt to find files and folders with No ansi caracters

i delete the folder sadly ,can't provide a scrennshot

highend
Posts: 14996
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: how can i enble asiatic caraters?

Post by highend »

This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 66678
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: how can i enble asiatic caraters?

Post by admin »

There is also the isunicode() function.

giuliastar
Posts: 365
Joined: 14 Sep 2013 07:22

Re: how can i enble asiatic caraters?

Post by giuliastar »

highend wrote:This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;
thanks highend
can i use with search feature?
i short this script will shot files and folder with caracters not english , german , spanish,italian ,and other western europe ?
in short i have to select a folder(not a drive or partition right? ) and click scripting ->run script -> paste your code
i'm right, am not ?
thanks
Last edited by giuliastar on 18 Feb 2014 09:44, edited 1 time in total.

giuliastar
Posts: 365
Joined: 14 Sep 2013 07:22

Re: how can i enble asiatic caraters?

Post by giuliastar »

admin wrote:There is also the isunicode() function.
hi
where ?
xyplorer is so full of features?
in the search feauture?
can not find it?

thanks

admin
Site Admin
Posts: 66678
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: how can i enble asiatic caraters?

Post by admin »

It's a scripting command.

giuliastar
Posts: 365
Joined: 14 Sep 2013 07:22

Re: how can i enble asiatic caraters?

Post by giuliastar »

highend wrote:This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;
Hi
this is an amazing script
but i guess with the last version of xyplorer it found file and folder like

Code: Select all

L:\film\Pixies • Indie Cindy [2014] 320\Pixies\folder.jpg
is there a way to search in the windows registry for such keys utf-8 chars in it =
thanks a lot !

bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: how can I enable asiatic characters?

Post by bdeshi »

giuliastar wrote:is there a way to search in the windows registry for such keys utf-8 chars in it =
Not related to XYplorer at all, but here you go.
Press Windows Key + R, type regedit. When the registry editor opens, press F3, or select Edit > Find. Now just type the characters in the Find what box. :)
To see the attached files, you need to log into the forum.
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

giuliastar
Posts: 365
Joined: 14 Sep 2013 07:22

Re: how can i enble asiatic caraters?

Post by giuliastar »

highend wrote:This one would show all files / folders with utf-8 chars in it...

Code: Select all

    $list = "";
    $items = folderreport("items", "r", , "r", , "<crlf>");
    foreach($item, $items, "<crlf>") {
        $newStrg = utf8decode($item);
        if ($item != $newStrg) { $list = $list . $item . "<crlf>"; }
    }
    text $list;
hi
is there a way to save several script like preset or template in xyplorer?
thanks

highend
Posts: 14996
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: how can I enable asiatic characters?

Post by highend »

Code: Select all

rtfm "idh_scripting.htm#idh_scripting_multi";
One of my scripts helped you out? Please donate via Paypal

RalphM
Posts: 2121
Joined: 27 Jan 2005 23:38
Location: Cairns, Australia

Re: how can I enable asiatic characters?

Post by RalphM »

@highend: I think the OP is unfamiliar with storing scripts rather than using one scriptfile as a multi-script resource.

@guliastar: Scripts can be stored in various ways in order to reuse the code, either as a separate scriptfile on disc, as the content of a catalog entry or in a user button. I suggest you do some basic reading in the help file regarding scripting.
Ralph :)
(OS: W11 25H2 Home x64 - XY: Current x64 beta - Office 2024 64-bit - Display: 1920x1080 @ 125%)

Post Reply