admin wrote:TheQwerty wrote:For comparison my full list of properties is attached.
Curious: How did you get the numbers in front of each line?

TextPad has some additional expressions available when doing regex replacements; one of which is sequence numbers.
TextPad's Help wrote:How to Generate Sequence Numbers
You can update or insert sequence numbers in a file, using replacement expressions. This is achieved using the Replace dialog box, with the Regular Expression box checked.
The syntax of the replacement expression is:
Expression: Effect:
\i Replace with numbers starting from 1, incrementing by 1.
\i(10) Replace with numbers starting from 10, incrementing by 1.
\i(0,10) Replace with numbers starting from 0, incrementing by 10.
\i(100,-10) Replace with numbers starting from 100, decrementing by -10.
Examples:
To insert line numbers at the start of each line:
Search for:^
Replace with:\i
To update sequence numbers of the form Axxx, Bxxx, … ,Zxxx where "xxx" is any number >= 100, independent of the letters, which are to be preserved:
Search for:\([A-Z]\)[1-9][0-9][0-9]+
Replace with:\1\i(100)
So after doing a Copy All Items from XY and pasting in TextPad, I did a find '^' and replace with '\i(0)\t' on the selected properties.