如何在Python中为正则表达式的一部分设置忽略大小写标志?
是否有可能在Python中实现这样一个简单的东西:
#!/usr/bin/perl
my $a = 'Use HELLO1 code';
if($a =~ /(?i:use)\s+([A-Z0-9]+)\s+(?i:code)/){
print "$1\n";
}
字符串中间的标记字母始终是大写的。其余单词的字母可以有任何大小写(USE、use、Use、CODE、code、Code 等)
Is it possible to implement in Python something like this simple one:
#!/usr/bin/perl
my $a = 'Use HELLO1 code';
if($a =~ /(?i:use)\s+([A-Z0-9]+)\s+(?i:code)/){
print "$1\n";
}
Letters of token in the middle of string are always capital. Letters of the rest of words can have any case (USE, use, Use, CODE, code, Code and so on)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从 python 3.6 开始,您可以在组内使用标志:
因此
(?i:use)
现在是正确的语法。从 python3.6 终端:Since python 3.6 you can use flag inside groups :
Thus
(?i:use)
is now a correct syntaxe. From a python3.6 terminal:据我所知,python 正则表达式引擎不支持部分忽略大小写。这是一个使用不区分大小写的正则表达式的解决方案,然后测试令牌是否为大写。
这是程序的输出:
As far as I could find, the python regular expression engine does not support partial ignore-case. Here is a solution using a case-insensitive regular expression, which then tests if the token is uppercase afterward.
Here is the program's output:
根据文档,这是不可能的。
(?x)
语法仅允许您修改整个表达式的标志。因此,您必须将其拆分为三个正则表达式,并在另一个正则表达式之后应用它们或手动执行“忽略大小写”:/[uU][sS][eE]...
According to the docs, this is not possible. The
(?x)
syntax only allows you to modify a flag for the whole expression. Therefore, you must split this into three regexp and apply them one after the other or do the "ignore case" manually:/[uU][sS][eE]...