blob: 54dd22998afe343ce14c6271310b5b197c78c3cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
2009-01-01 * Jan 09
A 100.00 EUR
B
test reg --format '%(trim(""))\n'
end test
test reg --format '%(trim("a"))\n'
a
a
end test
test reg --format '%(trim(" a"))\n'
a
a
end test
test reg --format '%(trim("a "))\n'
a
a
end test
test reg --format '%(trim(" a "))\n'
a
a
end test
test reg --format '%(trim(" aa "))\n'
aa
aa
end test
|