Twitter アカウント名の配列があるとします。
string = %w[example1 example2 example3 example4 example5 example6 example7 example8 example9 example10 example11 example12 example13 example14 example15 example16 example17 example18 example19 example20]
そして、先頭に追加する変数と追加する変数:
prepend = 'Check out these cool people: '
append = ' #FollowFriday'
これを、それぞれ最大長が 140 文字のできるだけ少ない文字列の配列に変換するにはどうすればよいでしょうか。先頭テキストで始まり、追加テキストで終わり、すべて @ 記号で始まり、Twitter アカウント名とスペースで区切ります。このような:
tweets = ['Check out these cool people: @example1 @example2 @example3 @example4 @example5 @example6 @example7 @example8 @example9 #FollowFriday', 'Check out these cool people: @example10 @example11 @example12 @example13 @example14 @example15 @example16 @example17 #FollowFriday', 'Check out these cool people: @example18 @example19 @example20 #FollowFriday']
(アカウントの順序は重要ではないため、理論的には、使用可能なスペースを最大限に活用するために最適な順序を見つけようとすることができますが、必須ではありません。)
助言がありますか?メソッドを使用する必要があると考えscan
ていますが、まだ正しい方法がわかりません。
一連のループを使用するのは非常に簡単ですが、Ruby の適切なメソッドを使用する場合は、その必要はないと思います。これが私がこれまでに思いついたものです:
# Create one long string of @usernames separated by a space
tmp = twitter_accounts.map!{|a| a.insert(0, '@')}.join(' ')
# alternative: tmp = '@' + twitter_accounts.join(' @')
# Number of characters left for mentioning the Twitter accounts
length = 140 - (prepend + append).length
# This method would split a string into multiple strings
# each with a maximum length of 'length' and it will only split on empty spaces (' ')
# ideally strip that space as well (although .map(&:strip) could be use too)
tweets = tmp.some_method(' ', length)
# Prepend and append
tweets.map!{|t| prepend + t + append}
PS誰かがより良いタイトルの提案を持っているなら、私に知らせてください. 質問を要約するのに苦労しました。