这是PowerShell的全新手。我需要将数据导出为制表符分隔文件,看起来像Export-Csv是要使用的实用程序。我无法弄清楚如何指定制表符。我试过了
function caretIntoView() {
input.setSelectionRange(input.value.length, input.value.length);
input.blur();
input.focus();
input.select();
input.selectionStart = input.selectionEnd = input.value.length;
}
和
Export-Csv -Delimiter \t
答案 0 :(得分:1)
在这里找到答案:How do I type a TAB character in PowerShell?。
基本上使用"`t" (在双引号中反向标记t)以指定PS中的选项卡。