|
Improvements in Misc. Utilities:
when you add prefixes or extensions
to the lines or when you replace substrings, you can specify some
special characters. To specify a Tab character, use ^t characters.
To specify the newline characters, use ^p characters for CRLF, ^n
for LF only, ^r for CR only. To specify a ^ character, use ^^.
Also you can use macros {%RND(<r>)%} to produce random numbers within
a range [0..<r>-1]. Parameter <r> should be between 1 and 2147483647.
You can omit parameter <r>. In that case the range will be
[0..2147483647-1]. Example below demonstrates how to add Tab character and a random number to each line of the source list: ^t{%RND()%} |