modified: c/ff

modified:   c/hello.rb
	modified:   c/main.rb
	modified:   m/ReadFile.rb
This commit is contained in:
Quentin
2013-12-20 09:54:33 +01:00
parent 2ddd3fdc0d
commit 6ae2f3f504
4 changed files with 20 additions and 32 deletions

View File

@ -10,7 +10,7 @@ class ReadFile
def getUrls
txt = self.getALL
url = txt.match /http[^\s]*/
url = txt.scan(/http[^\s]*/)
return url
end
end