如何在antconc中检索出含put的句子?

请问,在antconc中如何才能检索出包含put的句子呢?包括它的一些变化形式。

谢谢各位c友了。
 
PowerGREP搜索问题求教

大家好,有个问题求教。
我首先在powerGREP中用正则表达式^(.*)\s(\belectric\b)\s(.*)搜索anc,得到所有含electrical的句子,作为微型文本存成一个文件。接着用AntConc打开这个文件,用\t.+\t将electric高亮显示。但结果是图上的样子,即很多句子中不仅仅高亮显示了这一个单词,而是将其他一些单词也同时高亮了。
 

附件

  • electrical.jpg
    electrical.jpg
    82.6 KB · 浏览: 1
Re: PowerGREP搜索问题求教

大家好,有个问题求教。
我首先在powerGREP中用正则表达式^(.*)\s(\belectric\b)\s(.*)搜索anc,得到所有含electrical的句子,作为微型文本存成一个文件。接着用AntConc打开这个文件,用\t.+\t将electric高亮显示。但结果是图上的样子,即很多句子中不仅仅高亮显示了这一个单词,而是将其他一些单词也同时高亮了。

Hi, I suggest you put a question mark after the .+ as below:
\t.+?\t

The question mark means a non-greedy search so it will find the first match, which is probably what you want.

By the way, why not do the powerGREP search directly in AntConc?

Laurence.
 
回复: 如何在antconc中检索出含put的句子?

LAnthony was right. You don't need to use \t.+\t for your AntConc search. When Prof. Liang suggested \t.+\t in his Minitext article, it was actually meant to be a fool-proof expression for language teachers.

As you are able to compose Regex, do it in AntConc as you did in PowerGREP.
 
Back
顶部