random_regex
在我的代码中,我使用String::Random中的函数创建了一个类似于 IP 地址的字符串
$ip = random_regex('\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}');
这是在循环内部,每当它到达这一行时,Perl 就会输出:
'\.' being treated as literal '.' at ./test_data.pl line 67
'\.' being treated as literal '.' at ./test_data.pl line 67
'\.' being treated as literal '.' at ./test_data.pl line 67
如何忽略或抑制此警告?或者也许修改正则表达式以完全避免它?