简体   繁体   中英

Replacing all non-alphanumeric characters except some characters

I want to replace all non-alphanumeric characters, but keep Æ, Ø, Å, æ, ø, å.
Current code:

  replaceAll("\\P{Alnum}", "_")

Use explicit white list instead:

replaceAll("[^a-zA-Z0-9ÆØÅæøå]","_")

Look at the similar question

以下对您有用吗?

 replaceAll("[^A-Za-z0-9ÆØÅæøå]", "_")

试试这个:

replaceAll("^[a-zA-ZÆØÅæøå]*$", "_");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM