A very quick question.
Here is the expression:
/[a-zA-Z]{1,}/
I want this expression to match only those letters. But it also seems to match "=" (equals sign). Am I doing something wrong?
For example:
/\B#{1}(__){1}(F|OB){1}_{1}([a-zA-Z]{1,})={1}\B/
This should match: #__OB_someText=
The problem is it also matches this: #__OB_someText==
or this #__OB_someText====2
The equal sign should appear only once.
I probably don't understand much about these assertions: \b \B
.