简体   繁体   English

匹配符号的正则表达式以符号开头

[英]Regex to match symbols starts with symbols

I want to find symbols that start with à or â using Regex.我想使用 Regex 查找以Ãâ开头的符号。

La Soufrière
tail—an

So found strings should be.所以发现字符串应该是。

è
—

Is it possible and if possible what is the good Regex?是否可能,如果可能,什么是好的正则表达式?

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

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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