vim ( " " ), , , col\%[umn] col color, colum columbus column.
, python re,
, ? quantifier, :
>>> import re
>>> words = ['color', 'columbus', 'column']
>>> rex = re.compile(r'col(?:u(?:m(?:n)?)?)?')
>>> for w in words: print rex.findall(w)
['col']
['colum']
['column']