vote up 1 vote down star
1

Hi,

I am looking for a more elegant way of concatenating strings in Ruby.

I have the following line:

source = "#{ROOT_DIR}/" << project << "/App.config"

Is there a nicer way of doing this?

And for that matter what is the difference between '<<' and '+'?

Thanks

flag

6 Answers

vote up 7 vote down check

You can do that in several ways:

  1. as you shown with << but that is not the usual way
  2. with string interpolation

    source = "#{ROOT_DIR}/#{project}/App.config"

  3. with +

    source = "#{ROOT_DIR}/" + project + "/App.config"

2/ seems to be more efficient in term of memory/speed from what I've seen (not measured though).

When dealing with pathnames, you may want to use File.join to avoid messing up with pathname separator.

In the end, it is a matter of taste.

link|flag
I'm not very experienced with ruby. But generally in cases where you concatenate lots of strings you often can gain performance by appending the strings to an array and then at the end put the string together atomically. Then << could be useful? – PEZ Dec 18 '08 at 13:12
You'll have to add memory an copy the longer string into it anyway. << is more or less the same as + except that you can << with a single character. – Keltia Dec 18 '08 at 13:20
Instead of using << on the elements of an array, use Array#join, it's much faster. – nertzy Dec 22 '08 at 9:49
vote up 2 vote down

I guess

source = "#{ROOT_DIR}/#{project}/App.config"

should do the trick.

link|flag
vote up 0 vote down

You might get away with:

source = "#{ROOT_DIR}/#{project}/App.config"
link|flag
I was the first to give this answer though :-) Usually you have a bar appearing at the top when you are composing your answer telling you that a new answer has been typed in. Good idea to click the refresh button... – Pierre Dec 18 '08 at 13:20
vote up 3 vote down

Since this is a path I'd probably use array and join:

source = [ROOT_DIR, project, 'App.config'] * '/'
link|flag
vote up 6 vote down

If you are just concatenating paths you can use Ruby's own File.join method.

source = File.join(ROOT_DIR, project, 'App.config')
link|flag
This seems to be the way to go since then ruby will take care of creating the correct string on system with different path separators. – PEZ Dec 18 '08 at 13:28
vote up 1 vote down

The + operator is the normal concatenation choice, and is probably the fastest way to concatenate strings.

The difference between + and << is that << changes the object on its left hand side, and + doesn't.

irb(main):001:0> s = 'a'
=> "a"
irb(main):002:0> s + 'b'
=> "ab"
irb(main):003:0> s
=> "a"
irb(main):004:0> s << 'b'
=> "ab"
irb(main):005:0> s
=> "ab"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.