Hello,
I don't understand the logical behind the function Insert - String at every increment.
For example when I have a text:
If I insert the following string "xx" with a value of 2 as the increment (record length) at which to insert string, I get this:
Why at the second line it starts to insert the defined string "xx" whereas it is supposed to count until the second character to insert the defined string?
Thanks
I don't understand the logical behind the function Insert - String at every increment.
For example when I have a text:
Code: Select all
aaaa
aaaa
aaaa
aaaa
aaaa
aaaa
aaaa
Code: Select all
aaxxaaxx
xxaaxxaaxx
xxaaxxaaxx
xxaaxxaaxx
xxaaxxaaxx
xxaaxxaaxx
xxaaxxaaxx
Thanks