学习 AppleScript 我正在尝试练习,我想看看我是否可以在一个.xhtml
文件中获得一个类的计数。
在我的 BBEdit 项目中,我为项目设置了一个变量:
set this_project to file of project document 1
确保针对所有.xhtml
文件:
set total_xhtml to {search mode:grep, case sensitive:false, match words:false, extend selection:false, returning results:true, filter:{ID:"111232452", filter_mode:and_mode, filter_terms:{{operand:"xhtml", field:«constant ****FnSf», operator:op_is_equal}}}}
但是当我尝试计算每个文件的类时,我很难过..
我确实尝试过:
set varCount to count class=\"foobar\"" of (this_project in total_xhtml)
如果我尝试set varCount to count class=\"foobar\""
它会在 AppleScript 编辑器中返回一个数字,但我怎样才能获得项目中每个文件的完整计数?