I need to create a regex expression that will filter any variant of \"kitchen\" that has between 0 and 1 random characters between any of the letters, but it needs to make an ex
You can do a lookahead to make sure the string is not exactly 'kitchen'
r:(?!kitchen)k.?i.?t.?c.?h.?e.?n
DEMO