Hey,
I'm looking to match a string to another string ANYWHERE in a new file. For instance, my code looks like such:
if readlines[*] == chosen_one # If there's a match -
next # Boil some brains (try again)
end
My goal is to do a search through each line in the file's line (readlines[*]) for the chosen_one.
Will Ruby support the wildcard I used? And if not, what could I do to fix it? BTW, this is apart of the ruby quiz if that helps.
aRi
-------------------------------------------|
Nietzsche is my copilot
yermej
(yermej)
2
If you've read the lines in as elements of an array:
lines = the_file.readlines
lines.any? {|line| line.match chosen_one} # true if there's a match
If you've read in the lines as one big string:
lines = the_file.read
!lines.match(chosen_one).nil? # true if there's a match
···
On Jun 25, 5:44 pm, Ari Brown <a...@aribrown.com> wrote:
Hey,
I'm looking to match a string to another string ANYWHERE in a new
file. For instance, my code looks like such:
if readlines[*] == chosen_one # If there's a match -
next # Boil some brains (try
again)
end
My goal is to do a search through each line in the file's line
(readlines[*]) for the chosen_one.
Will Ruby support the wildcard I used? And if not, what could I do to
fix it? BTW, this is apart of the ruby quiz if that helps.
aRi
You should check out Enumerable#any?. I think that is what you are
looking for. For example:
if readlines.any? { |line| line == chosen_one }
...
end
···
On Tue, Jun 26, 2007 at 07:44:14AM +0900, Ari Brown wrote:
Hey,
I'm looking to match a string to another string ANYWHERE in a new
file. For instance, my code looks like such:
if readlines[*] == chosen_one # If there's a match -
next # Boil some brains (try
again)
end
--
Aaron Patterson
http://tenderlovemaking.com/