Regex find anything between + sign except + [duplicate]

With regex, I want to get anything between + sign avoid if + with backslash.

My string is GroupNo+ + +Name+ / +Ac

I want to get " \+ " and " / " with php preg_matchall

I tried with /+(.*?)+/ but it takes + with slash also.