I would like to match any one of these characters: < or > or <= or >= or =.
<
>
<=
>=
=
This one doe
Try this:
[<>]=?|=
It matches < or > optionally followed by =, or just = by itself.