正则表达式
正则表达式 | |||||
|
横杠替换成斜杠 |
只替换第一个
替换所有
|
- | - | - |
斜杠替换为横杠 |
|
- | - | - | |
Regex.IsMatch | 是否包含中文 | public static bool HasChinese(string str) { return Regex.IsMatch(str, @"[\u4e00-\u9fa5]"); } |
|||
正则表达式 | |||||
|
横杠替换成斜杠 |
只替换第一个
替换所有
|
- | - | - |
斜杠替换为横杠 |
|
- | - | - | |
Regex.IsMatch | 是否包含中文 | public static bool HasChinese(string str) { return Regex.IsMatch(str, @"[\u4e00-\u9fa5]"); } |
|||