Hi, Laohong and all the helpful C-pals, how can I use RegExp in antconc to list all the "there be" structures? I tried and it seems that I am stuck with it.By the way, I used Gotagger to make POS tagging.
Many thx to Dr. Xu. I did try with "there_EX" at first as word search, and found it more comprehensive, of CLEC, around 700 items are located. Of course, as you've carefully pointed out there are some adverb theres. My RegExp search turned out 407 results. that's why I am sceptical about my RegExp.
This RegEXP can satisfactorily solve the problem:
(there_EX\s+\W+\w+_VB)|(there_EX\s+\w+_VB)
This RegEXP can satisfactorily solve the problem:
(there_EX\s+\W+\w+_VB)|(there_EX\s+\w+_VB)
Why did u bother "(there_EX\s+\W+\w+_VB)|(there_EX\s+\w+_VB)"?
there_EX will do.