我是 Python 新手。
我有一个打印表格(及其内容)的字符串,如下所示
Name At time Last Inter\ Max Logfile Location Status
time val log
(mins) files
------------ ------- ----- ------ ------ ------------------------------ -------
foo1 now 16:00 60 100 flash:/schedule/foo1/ Job
under
progress
foo2 now - 60 100 - Waiting
tech-support now 16:00 60 100 flash:/schedule/tech-support/ Job
under
progress
我需要找出字符串“ Job under progress
”出现在表中的次数。我试过了len( re.findall( pattern, string ) )
,len( re.findall("(?=%s)" % pattern, string) )
但它们似乎都不起作用。
有更好的建议吗?