I want to replace password=aaa to password=bbb.
How can I do that using RegEx?
My string is:
string input = "user=fred;password=aaa;server=localhost";
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.
Since you didn’t specify a language I’ll just make my answer generic. What function/method you use will depend on the language.
Regular Expression:
(?<=password=).*?(?=;)Replacement:
newpasswordAnd here’s a working example: http://fiddle.re/jn2b