I was trying to look for it, but couldn't find any ref , I'm looking for a regex that will accept all positive integers include -1 (only - no other negative numbers) .
My regex is now /^\d+$/ But this is only for the part of all positive integers .
What should i add to that regex to work out ?
Thanks !!!