Is it possible to perform the following match?
^do something$
.. where matches are possible for a partially typed 'something'.
For example:
^do s$
^do so$
^do som$
^do some$
^do somet$
^do someth$
^do somethi$
^do somethin$
^do something$
Is it possible to do this with regex without having to string a bunch of logical ORs?