perl中一个正则表达式的疑问

en ,谢谢
[quote]回复给 胖瓜瓜 : i.
回复给 胖瓜瓜 : if(/(\w*(a\b))(.{5})/){<....


可以这样, 用/g全局搜索

while ((\w*(a\b))(.{5})/) {
print "$3\n";
}