If I have a string such as:
blah blah item: value blah blah
What would the expression be to just get value?
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.
You can use this
regex:\s*(\w+)$1or group 1 has the required value\s*matches 0 to many spaces\w+matches 1 to many characters which can be any 1 of[a-zA-Z\d_]