-
Notifications
You must be signed in to change notification settings - Fork 68
Closed
Labels
Description
Bug Report
- Yes, I reviewed the contribution guidelines.
- Yes, more specifically, I reviewed the guidelines on how to write clear bug reports.
Describe the current, buggy behavior
wp db search '\p{Cf}' --regex
Regexp search for character classes finds individual bytes of an UTF-8 encoded character.
e.g. í in "hírlevél"
the result is displayed like "blog h▒▒rlevél feliratkozás"
How to search in UTF-8 encoded text?
BTW wp db search "$(printf '\xc3')" --regex also finds the first byte of í (actually all characters encoded on two bytes)
Reactions are currently unavailable