Using the Lua pattern matching (https://docs.coronalabs.com/guide/data/luaString/index.html), how would you write a pattern that matches zero or one word (i.e. not character)?
It should match this:
“no problems”
“problems”
but NOT this:
“not my problems”