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
34
35
36
37
38
|
At position: 0, found: '-'
At position: 1, found: '-'
At position: 2, found: ' '
At position: 3, found: '!'
At position: 4, found: '!'
At position: 4, found: '!'
At position: 3, found: '!'
At position: 2, found: ' '
At position: 1, found: '-'
At position: 0, found: '-'
Using hSeek/AbsoluteSeek:
At position: 0, found: '-'
At position: 1, found: '-'
At position: 2, found: ' '
At position: 3, found: '!'
At position: 4, found: '!'
At position: 4, found: '!'
At position: 3, found: '!'
At position: 2, found: ' '
At position: 1, found: '-'
At position: 0, found: '-'
Using hSeek/SeekFromEnd:
(Don't worry if you're seeing differing numbers here, it might be down to '\n' vs '\r\n')
At position: 0, found: '-'
At position: 1, found: '-'
At position: 2, found: ' '
At position: 3, found: '!'
At position: 4, found: '!'
At position: 1376, found: 'n'
At position: 1377, found: ' '
At position: 1378, found: '"'
At position: 1379, found: '"'
At position: 1380, found: '\n'
|