symbol confusions!!

J

Jay Pangmi

Hi, I'm new to ruby and I'm going thru pretty good as I've done java but
the only thing, at this point, thats really bothering me is the use of
symbols like:
%w{}
%r{}
%7d etc etc..

So, is there anywhere I can find good discussions about such symbols coz
until now I'm using it blindly... thanks
 
R

Rob Biedenharn

Hi, I'm new to ruby and I'm going thru pretty good as I've done java
but
the only thing, at this point, thats really bothering me is the use of
symbols like:
%w{}
%r{}
%7d etc etc..

So, is there anywhere I can find good discussions about such symbols
coz
until now I'm using it blindly... thanks

Do you have a book like the Pickaxe?[1] That will go into great
detail on all the features that Ruby has to offer.

Briefly, however:

%w{} is a way to turn a list of words into an array:
%w{ one fish two fish }
=> [ "one", "fish", "two", "fish" ]

%r{} is a regular expression literal. %r{stuff.*} is like /stuff.*/
without having to quote slashes (which is the main reason to see it
used if you're matching a file path, for example)

%7d is probably a format specification from Kernel#sprintf or String#%
meaning a decimal value in a minimum of 7 columns:
"%7d"%42
=> " 42"

Oh, and "Kernel#sprintf" (generally, ClassName#method) means the
instance method 'sprintf' from the class (or module) 'Kernel' (so, the
'%' method from the String class).

-Rob


[1] http://www.pragprog.com/titles/ruby/programming-ruby


Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)
 
J

Jay Pangmi

Rob said:
Do you have a book like the Pickaxe?[1] That will go into great
detail on all the features that Ruby has to offer.

Briefly, however:

%w{} is a way to turn a list of words into an array:
%w{ one fish two fish }
=> [ "one", "fish", "two", "fish" ]

%r{} is a regular expression literal. %r{stuff.*} is like /stuff.*/
without having to quote slashes (which is the main reason to see it
used if you're matching a file path, for example)

%7d is probably a format specification from Kernel#sprintf or String#%
meaning a decimal value in a minimum of 7 columns:
"%7d"%42
=> " 42"

Oh, and "Kernel#sprintf" (generally, ClassName#method) means the
instance method 'sprintf' from the class (or module) 'Kernel' (so, the
'%' method from the String class).

-Rob


[1] http://www.pragprog.com/titles/ruby/programming-ruby


Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)

Thanks Rob you made my life lot easier.. no I don't have that book I
just have 'Agile Web Development with Rails 2nd Edt.' so, ruby is just a
small part here and hence internet has been my only source.
Also I confusion about the use of slashes:
%r{(\d{1,2}):(\d{1,2}):(\d{4})}
whats the use of forward slash here
and the '+' sign below:
split(/[^0-9]+/)
Also I think I've seen the use of other words with '%' like %w but I
don't remember which words in particular.

Thanks.
 
F

F. Senault

Le 16 octobre à 14:07, Jay Pangmi a écrit :
So, is there anywhere I can find good discussions about such symbols coz
until now I'm using it blindly... thanks

An excellent quick resource for Ruby can be found here :

http://www.zenspider.com/Languages/Ruby/QuickRef.html

The use of % constructs is covered in the types section (in the strings,
arrays and regexen).

Your latter question about // is also covered - those are regular
expressions. A very quick reference is also included.

BTW, the best way to learn ruby itself (without rails) is to log on a
machine where it is installed and launch the irb console program. It
allows you to test snippets of code interactively :

15:41 fred@grappa:~> irb
%w(a b c d e f) => ["a", "b", "c", "d", "e", "f"]
%w(a b c d e f).is_a? Array
=> true

(What I type is after the >> prompt, the => is the response, i.e. what
the expression evaluates to.)

G'd luck and enjoy !

Fred
 
B

Brian Candler

Jay said:
Thanks Rob you made my life lot easier.. no I don't have that book I
just have 'Agile Web Development with Rails 2nd Edt.' so, ruby is just a
small part here and hence internet has been my only source.

The old, first edition version of the PragProg Programming Ruby book
(for ruby-1.6) is available for free online:
http://www.ruby-doc.org/docs/ProgrammingRuby/

The chapter entitled "The Ruby Language" goes into the constructs like
%w, %r, %q etc (near the top; scroll down to "General Delimited Input",
or click "General Delimited Input" in the index on the left hand side)
Also I confusion about the use of slashes:
%r{(\d{1,2}):(\d{1,2}):(\d{4})}
whats the use of forward slash here
and the '+' sign below:
split(/[^0-9]+/)

Scroll down to "regular expression patterns" for the answer to these.

Hopefully this will convince you to buy the 2nd edition of Programming
Ruby. Avoid the 3rd unless you're experimenting with ruby 1.9.

I have only two Ruby books: this one, plus Agile Web Development with
Rails. They are both superb.

Regards,

Brian.
 
R

Rob Biedenharn

Rob said:
Do you have a book like the Pickaxe?[1] That will go into great
detail on all the features that Ruby has to offer.

Briefly, however:

%w{} is a way to turn a list of words into an array:
%w{ one fish two fish }
=> [ "one", "fish", "two", "fish" ]

%r{} is a regular expression literal. %r{stuff.*} is like /stuff.*/
without having to quote slashes (which is the main reason to see it
used if you're matching a file path, for example)

%7d is probably a format specification from Kernel#sprintf or
String#%
meaning a decimal value in a minimum of 7 columns:
"%7d"%42
=> " 42"

Oh, and "Kernel#sprintf" (generally, ClassName#method) means the
instance method 'sprintf' from the class (or module) 'Kernel' (so,
the
'%' method from the String class).

-Rob


[1] http://www.pragprog.com/titles/ruby/programming-ruby


Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)

Thanks Rob you made my life lot easier.. no I don't have that book I
just have 'Agile Web Development with Rails 2nd Edt.' so, ruby is
just a
small part here and hence internet has been my only source.
Also I confusion about the use of slashes:
%r{(\d{1,2}):(\d{1,2}):(\d{4})}
whats the use of forward slash here
and the '+' sign below:
split(/[^0-9]+/)
Also I think I've seen the use of other words with '%' like %w but I
don't remember which words in particular.

Thanks.


Brian's and Fred's responses should help, too (esp. the link to the
earlier Pickaxe)

The \d is an escape within a regular expression that's equivalent to
[0-9] and + is like {1,} in regular expressions to match "one or more
of...". x+ is xx* or x{1,} /[^0-9]+/ is a sequence of one or more
non-digits.

-Rob

Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)
 
F

Frederick Cheung

Thanks Rob you made my life lot easier.. no I don't have that book I
just have 'Agile Web Development with Rails 2nd Edt.' so, ruby is
just a
small part here and hence internet has been my only source.
The first edition of the pickaxe is available online http://www.rubycentral.com/book/
A little out of date (it covers ruby 1.6) but there's plenty of useful
stuff in there

There's also the humble little ruby book: http://www.humblelittlerubybook.com/
which is a free download
Also I confusion about the use of slashes:
%r{(\d{1,2}):(\d{1,2}):(\d{4})}
whats the use of forward slash here
and the '+' sign below:
split(/[^0-9]+/)
/ can be used to delimit a regular expression. In a regular expression
+ denotes "one or more times")
Also I think I've seen the use of other words with '%' like %w but I

%r (alternative way of writing regular expressions), %x (like `), %q
and %Q (like ' and " respectively) and %w are the common ones

Fred
 
T

The Higgs bozo

Jay said:
Hi, I'm new to ruby and I'm going thru pretty good as I've done java but
the only thing, at this point, thats really bothering me is the use of
symbols like:
%w{}
%r{}
%7d etc etc..

Questions like these are understandable because google does not appear
to index '%'. In this case googling for "ruby cheat sheet" is a good
first step.
 
A

Artem Voroztsov

2008/10/17 Jay Pangmi said:
wow!! thanks guys.. Now things've already started making sense..

Threre is also %s{..}:

%q{abc def} #=> String "abc def"
%s{abc def} #=> Symbol :"abc def"


Just my 2 cents :)

Artem
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top