我正在尝试创建批处理文件脚本,以将普通.txt
文档转换为完全垂直的文档。例如:
自:
This is a test document,
it is displaying characters on the same line.
要:
T
h
i
s
i
s
a
t
e
s
t
d
o
c
u
m
e
n
t
,
i
t
i
s
d
i
s
p
l
a
y
i
n
g
c
h
a
r
c
t
e
r
s
o
n
t
h
e
s
a
m
e
l
i
n
e
.
答案 0 :(得分:5)
也许这不能完全满足您的需求,但作为起点,您可以尝试使用
cmd
这将启动带有unicode输出的normal.txt
实例。在此实例中,cmd
文件将发送到标准输出。来自find
实例的所有输出都通过管道输入0x00
命令,该命令将看到空字符(unicode输出是每个字符序列两个字节,其中一个为空或@foreach (var c in db.Query(getWorkout))
{
<text>['1', @c.kg, @c.rep, @c.sett],</text>
}
ascii)作为行终止符,并在每个字符后输出一个新行。所有数据都被重定向到输出文件。
答案 1 :(得分:1)