使用 Ruby 进行行格式化
有一个文本文件,其中包含单词,每个单词之间有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一点正则表达式就可以了:
正则表达式,分解:
最后的 Perl 风格的位返回匹配的字符串,或者如果不匹配,则返回一个空字符串。它是这样分解的:
A little dab of regular expression will do ya:
The regular expression, broken down:
The bit of Perl-esque at the end returns the matched string, or if no match, an empty string. It breaks down like this: