gpt4 book ai didi

axapta - 字符串填充和对齐

转载 作者:行者123 更新时间:2023-12-02 09:34:51 24 4
gpt4 key购买 nike

我今天尝试使用 TextIo 保存文件。只需 3 行:

Radio Station;MagicFM
Test;This is jost for testing purpose.
TV;TV_Brand

一切都很好,但后来我读了它。

enter image description here

我无法对齐这些东西。

也许是这样的:

Radio Station         - MagicFM
Test - This is jost for testing purpose.
TV - TV_Brand

这就是我的代码:

info(strFmt("%1  - %2", strLFix( conPeek(con, 1), 20),conpeek(con, 2)));

我玩过一些 strRFix 和 strLFix 但没有运气..有没有简单的方法来完成这个?

最佳答案

像这样对齐输出并不是 infolog 的预期用途,正如 Matej 所说,原因是字体的问题。但是,如果您想将信息日志用于显示目的,您可能需要像这样使用它来获得以下输出:

static void Job114(Args _args)
{
container c, cc;
int i;

c = [["Radio Station", "MagicFM"], ["Test", "This is jost for testing purpose."], ["TV", "TV_Brand"]];
setPrefix("Output"); // SetPrefix is necessary to get the tabbing to function correctly
for (i=1; i<=conLen(c); i++)
{
cc = conPeek(c, i);
info(strFmt("%1\t%2", conPeek(cc, 1), conPeek(cc, 2)));
}
}

Output

关于axapta - 字符串填充和对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34271632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com