Home > Mobile >  How can I allow only alphanumeric including Chinese, Japanese and all that cryptographic languages?
How can I allow only alphanumeric including Chinese, Japanese and all that cryptographic languages?

Time:08-10

I'm currently trying to filter out any bad char from a string to only allow alphanumeric ones but I need to include Chinese, Japanese and all that non-Latin languages as well. After some hours of reading RegEx, I'm more confused than informed. Currently I have:

let string = 'Test=           
  • Related