非英语字符的正则表达式

前端之家收集整理的这篇文章主要介绍了非英语字符的正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要检查一些字符串是否包含任何非英文字符.

x = c('Kält','normal','normal with,punctuation ~-+!','normal with number 1234')
grep(pattern = ??,x) # Expected output:1

解决方法

您可以使用[^ [:ascii:]] PCRE正则表达式:

x = c('Kält','normal with number 1234')
grep(pattern = "[^[:ascii:]]",x,perl=TRUE) 
grep(pattern = "[^[:ascii:]]",value=TRUE,perl=TRUE)

输出继电器:

[1] 1
[1] "Kält"

R demo

猜你在找的正则表达式相关文章