import re

text = "be besides being bee be, be. before, Be Be. forbe be_ be3 be"
be = re.findall('(\\bbe\\b)', text, re.IGNORECASE)
print(len(be))
print(be)
