regex - Check If first character is "+" -
how can detect string start "+"
i tried
^\s*?\+.*$
no help.
p.s: have 1 line alltime.
you don't need \s*?
, have use:
^\+ or... ^[+]
in case want check complete string, can use:
^\+.*$
how can detect string start "+"
i tried
^\s*?\+.*$
no help.
p.s: have 1 line alltime.
you don't need \s*?
, have use:
^\+ or... ^[+]
in case want check complete string, can use:
^\+.*$
Comments
Post a Comment