我想在另一个正则表达式中编译python regex。例如,找到如下所示的IP地址: 这似乎不起作用。
>>> import re
>>> p_ip = re.compile(r'[0-9]|[0-9][0-9]|1[0-9][0-9]|2[0-5][0-5]')
>>> p_ip_full =re.compile( r'^(p_ip)\.{3}p_ip$')
>>> ip_str = "255.123.123.12"
>>> if (p_ip_full.match(ip_str)):
... print("match")
...
>>> p_ip_full
re.compile('^(p_ip)\\.{3}p_ip$')