There is a line like:
= + + + ...; = + + + ...;
It is necessary to select how many substrings of the form "= +++ ...;". Those. spaces are not taken into account, the first character is "=", then from one to no difference how many "+", and the whole character ";" completes it.
Works:
/[\+]{1,}/mx
But as soon as I want to substitute = or; stops working. Those.
/=[\+]{1,};/mx
Unfortunately, it does not work.