To perform regular expression queries on non latin characters you need to reference their character types. In the case of the Chinese, Japanese, Korean characters sets, use the \p{IsCJKUnifiedIdeographs} selector. For example, to capture only CJK characters from a mixed language text block, use......
[open]When performing regular expressions that need to capture special characters (eg. Chinese or Arabic character sets), you have options on how you go about this. Option 1 - Refence the character group All CJK characters - REGEX([\p{IsCJKUnifiedIdeographs}]{1,}) All Arabic characters -......
[open]