I need help to build a regex that can remove EVEN lines in a plain textfile.
Given this input:
line1
line2
line3
line4
line5
line6
It would output this:
line1
line3
line5
Thanks !
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.
Actually, you don’t use regex for that. With your favourite language, iterate the file, use a counter and do modulus. eg with awk (*nix)
even lines: