(LibreCalc) How to Change the Font of all Text in a Certain Language

As explained in the ICU User Guide’s Regular Expressions page, you can use \p{script=foo} or [:script=foo:] syntax to filter by “script” Unicode property. Combining this with information from Wikipedia, you can use regular expressions like [[:script=Han:][:script=Hiragana:][:script=Katakana:]]+ to search for these characters.

However, this won’t include the spaces and other non-specific characters into the result, which might give you less-than-ideal results.

Thnks. Another thing I should have known.

That seems like it would be a better solution if I knew how to use it, but with more experimenting, I found that just creating a new style seemed to get rid of the odd inconsistencies I was experiencing. The styles option worked wonders after that.

The styles option worked wonders after that.

Congratulations! That really is the better and correct way.