右对齐文件
我需要右对齐文件的功能。你能给我一些提示或建议吗? 谢谢。
I need function for right-aligning my file. Could you give me some hint or suggestion?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要右对齐文件的功能。你能给我一些提示或建议吗? 谢谢。
I need function for right-aligning my file. Could you give me some hint or suggestion?
Thanks.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我只能想到一个方法来回答这个问题:
I can only think of one way to answer this question:
编辑:
实际上,您不需要反转行:
原始:
反转行、填充它们、截断它们并将它们反转回来。
输出:
这是做同样事情的另一种方法:
Edit:
Actually, you don't need to reverse the lines:
Original:
Reverse the lines, pad them, truncate them and reverse them back.
Output:
Here's another way to do the same thing:
您将需要检测文件中行的最大长度,并编写一个函数来用空格将行填充到该长度。
You will need to detect the maximum length of a line in your file, and to write a function to pad lines with spaces to this length.