使用 Ruby 进行行格式化

发布于 2024-09-02 10:05:07 字数 159 浏览 5 评论 0原文

有一个文本文件,其中包含单词,每个单词之间有 1 个空格。还有一个命令行条目给出了所需的行(输出)长度。输出将是适合行长度的单词(取自命令行)。

此外,第一个单词将位于该行的左侧,最后一个单词将位于该行的右侧。每个单词之间的空格将相同。

任何帮助将不胜感激,感谢您的回复。

There is a text file containing words with 1 space between each of them. And there is also a command line entry that gives the length of line (output) wanted. Output will be words that fit into the length of the line (taken from command line).

Also the first word will be on the left side of the line and the last word will be right side of it. The spaces between each word will be same.

Any help will be appreciated thanks for replying.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最偏执的依靠 2024-09-09 10:05:07

一点正则表达式就可以了:

s = "The quick brown fox jumps over the lazy dog"

def limit_length(s, limit)
  s =~ /\A.{0,#{limit}}(?=\Z| )/ && 
amp; || ''
end

p limit_length(s, 2)    # => ""
p limit_length(s, 3)    # => "The"
p limit_length(s, 42)   # => "The quick brown fox jumps over the lazy"
p limit_length(s, 43)   # => "The quick brown fox jumps over the lazy dog"

正则表达式,分解:

\A                From the beginning of the string
.{0,#{limit}}     Match up to *limit* characters
(?=\Z| )          Followed by the end of the string or a blank

最后的 Perl 风格的位返回匹配的字符串,或者如果不匹配,则返回一个空字符串。它是这样分解的:

&&        If true (i.e., if match)
amp;        matched string
||        else
''        empty string

A little dab of regular expression will do ya:

s = "The quick brown fox jumps over the lazy dog"

def limit_length(s, limit)
  s =~ /\A.{0,#{limit}}(?=\Z| )/ && 
amp; || ''
end

p limit_length(s, 2)    # => ""
p limit_length(s, 3)    # => "The"
p limit_length(s, 42)   # => "The quick brown fox jumps over the lazy"
p limit_length(s, 43)   # => "The quick brown fox jumps over the lazy dog"

The regular expression, broken down:

\A                From the beginning of the string
.{0,#{limit}}     Match up to *limit* characters
(?=\Z| )          Followed by the end of the string or a blank

The bit of Perl-esque at the end returns the matched string, or if no match, an empty string. It breaks down like this:

&&        If true (i.e., if match)
amp;        matched string
||        else
''        empty string
迷鸟归林 2024-09-09 10:05:07
File.open('input.txt').each do |l|
  length_so_far = 0
  puts l.split(' ').select{|w| (length_so_far += w.length) < max_length}.join(' ')
end
File.open('input.txt').each do |l|
  length_so_far = 0
  puts l.split(' ').select{|w| (length_so_far += w.length) < max_length}.join(' ')
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文