I have a list of alpha-numeric values that I need to search through using a "greater than or equal to" and/or "less than or equal to" operator.
Example list of values to be searched:
a
b
c
d
e
f
User enters b, and specifies to return everything "greater than or equal to" it.
Expected results:
b
c
d
e
f
What is the regular expression for this?
Edit: I'm suggesting regex because the users have the ability to enter wildcards.
P.S. This is not homework :)
Thanks in advance!