Created
June 23, 2010 15:34
-
-
Save vidmantas/450090 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f = File.read("9niwrHXd.txt") | |
f.split("<url>").each do |e| | |
f.gsub!(e, '') if e =~ /aspx\?/ | |
end | |
f.gsub!(/(<url>){2,}/, "<url>") | |
File.open("new.txt", "w") do |n| | |
n.write f | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment