If i have a line that ends like
version is: 1.10.0.1001
i’m looking for a regex to get the version number but can’t figure out how to get the string following “version is:”
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.
Nevermind i figured it out
(?<=version is: ).*
This won’t include “version is: ” in the match and will take any number of characters after it