Hi there,
for stringregexp , what should the pattern be for this string to search for the first plus sign ( some of spaces before + )
$str = " +---"
I tried (?=\s*)[\+]*\b
I remembered it works at begining but then when i turn back to try again it doesnt work anymore...Would you give me a correct pattern.
for stringregexp , what should the pattern be for this string to search for the first plus sign ( some of spaces before + )
$str = " +---"
I tried (?=\s*)[\+]*\b
I remembered it works at begining but then when i turn back to try again it doesnt work anymore...Would you give me a correct pattern.