我有一个像这样的数组:
["marblecake","also","the",1337]
我想收回一个字符串,其中包含数组的每个元素,前缀是一些指定的字符串,然后通过另一个指定的字符串连接在一起.例如,
["marblecake",1337].join_with_prefix("%","__")
应该导致
# => %marblecake__%also__%the__%1337
我该怎么做?