"Clipboard SET text1\ntext2" ,how to make \n as line-wrap?

I want use "Clipboard SET text1\ntext2" to copy as:

text1
text2

but the result in clipboard will be "text1\ntext2", without line-wrap.

Clipboard SET {="text1" + CRLF + "text2"=}

or

Clipboard SET text1{=CRLF=}text2
1 Like

Thank you for help !