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.
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
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.