web-dev-qa-db-fra.com

Ruby conversion de tableau en chaînes

J'ai un tableau Ruby comme ['12','34','35','231'].

Je veux le convertir en chaîne telle que '12','34','35','231'.

Comment puis je faire ça?

162
Sachin R

Je vais m'amuser avec:

['12','34','35','231'].join(', ')

EDIT:

"'#{['12','34','35','231'].join("', '")}'"

Une interpolation de chaîne pour ajouter la première et la dernière citation: P

292
corroded
> a = ['12','34','35','231']
> a.map { |i| "'" + i.to_s + "'" }.join(",")
=> "'12','34','35','231'"
41
Shadwell

essayez ce code ['12','34','35','231']*","

vous donnera le résultat "12,34,35,231"

J'espère que c'est le résultat vous, faites le moi savoir

28
array.map{ |i|  %Q('#{i}') }.join(',')
10
wildcountry
string_arr.map(&:inspect).join(',') # or other separator
9
avihil

Je trouve de cette façon lisible et rubyish:

add_quotes =- > x{"'#{x}'"}

p  ['12','34','35','231'].map(&add_quotes).join(',') => "'12','34','35','231'"
7
hirolau
> puts "'"+['12','34','35','231']*"','"+"'"
'12','34','35','231'

> puts ['12','34','35','231'].inspect[1...-1].gsub('"',"'")
'12', '34', '35', '231'
5
John La Rooy

Et encore une autre variation

a = ['12','34','35','231']
a.to_s.gsub(/\"/, '\'').gsub(/[\[\]]/, '')
4
Bernard
irb(main)> varA
=> {0=>["12", "34", "35", "231"]}
irb(main)> varA = Hash[*ex.collect{|a,b| [a,b.join(",")]}.flatten]
...
3
NinjaCat
irb(main):027:0> puts ['12','34','35','231'].inspect.to_s[1..-2].gsub('"', "'")
'12', '34', '35', '231'
=> nil
2
ngoozeff

Vous pouvez utiliser une approche de programmation fonctionnelle, transformant des données:

['12','34','35','231'].map{|i| "'#{i}'"}.join(",")

1
Peter Toth - Toma