I've been toying with my regex for a while and still has some problem
with this.
I would like to get the web hostname of URLs : "get_domain(url) ":
such as:
http://yahoo.com --> yahoo.com
http://www.yahoo.com/ --> www.yahoo.com
http://www.yahoo.com/cool/dir --> www.yahoo.com
http://sub1.sub2.google.com --> sub1.sub2.google.com
http://sub1.sub2.google.com/abc/def/aa?? --> sub1.sub2.google.com
I would appreciate any help and pointer. Thanks in advance!!
Thanks,
-Chris
>> @a="http://www.yahoo.com"
=> "http://www.yahoo.com"
>> @b="http://www.yahoo.com/cool/dir"
=> "http://www.yahoo.com/cool/dir"
>> @c="http://sub1.sub2.google.com/abc/def/aa"
=> "http://sub1.sub2.google.com/abc/def/aa"
>> @c="http://sub1.sub2.google.com/abc/def/aa"^C
>> @a.split('/')[2]
=> "www.yahoo.com"
>> @b.split('/')[2]
=> "www.yahoo.com"
>> @c.split('/')[2]
=> "sub1.sub2.google.com"
Craig
Or,
require 'uri'
url = "http://sub1.sub2.google.com/abc/def/aa?param1=foo¶m2=bar"
URI.parse(url).host
=> "sub1.sub2.google.com"
-Rob
Rob Biedenharn http://agileconsultingllc.com
R...@AgileConsultingLLC.com
Hope everyone's doing great.
I have a simple problem and maybe someone could help -- my
requirement is pretty simple:
o I do a lot of scripting in Ruby, for plumbing our Rails web and
Java legacy applications.
o I need to persist [string1,string2,string3] data, such as:
"apple", "november", "5"
o I do this quite often with different data sets
o Performance is not a major concern
o Simplicity is best
o I need to be able to retrieve them and update them easily
I have been using ActiveRecord (object.new, object.save, etc) to do this
with a table with 3 columns, however I found it a bit too heavy-duty for
this simple purpose because I have to use different databases since the
data are in different locations..
I wonder if anyone could share some Ruby-Fu or a Ruby library tips on this.
Thanks in advance!
Chris
------
Buy text links SEO : http://www.ask2link.com/market_place?cnow
Sell text links : http://www.ask2link.com/refer/rails
------
> o I need to persist [string1,string2,string3] data, such as:
> "apple", "november", "5"
> o I do this quite often with different data sets
> o Performance is not a major concern
> o Simplicity is best
> o I need to be able to retrieve them and update them easily
For such simple persistence Marshal may do:
data = %w(foo bar baz)
File.open('data.db', 'wb') do |fh|
fh.write(Marshal.dump(data))
end
File.open('data.db', 'rb') do |fh|
data = Marshal.load(fh.read)
end