I would like to find replace this in eclipse:
find:
$_GET['whatever']
replace:
$this->input->get('whatever')
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. You have to make sure you have regular expressions turned on in the Find/Replace window.
It’s not clear to me what your ‘whatever’ needs to be. If it’s only word characters you can replace the .* with \w. You have to precede the dollar sign and the left and right brackets with a backslash (escape them) because they are special characters in the regex and if not escaped would be treated differently by the regex parser.
Good luck.