简体   繁体   中英

Regex to match symbols starts with symbols

I want to find symbols that start with à or â using Regex.

La Soufrière
tail—an

So found strings should be.

è
—

Is it possible and if possible what is the good Regex?

这将匹配以 Ã 或 â 开头的任何内容,并且还包含非字母数字、下划线或空格的任何内容

[Ãâ][^\w\s]*

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