I’ve currently got
preg_replace('/[^0-9]/s', '', $myvariable);
For example the input is GB -3. My current line is giving me the value 3. I want to be able to keep the minus so that the value shows -3 instead of the current output of 3.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
try this :
breakdown of regex:
//on both sides are regex delimiter – everything that is inside is regex[]means that this is character class. Rules change in character class^inside character class stands for “not”.\dis short for [0-9], only difference is that it can be used both inside and outside of character class-will match minus sign+in the end is the quantifier, it means that this should match one or more characters