vtabtocr(
TEXT
)

The vtabtocr( function converts vertical tabs (ASCII 0x0B) into carrige returns (ASCII 0x0D).


Parameters

This function has one parameter:

text – the original text containing zero or more vertical tabs.


Description

This function converts vertical tabs (ASCII 0x0B) into carrige returns (ASCII 0x0D). Some programs (including Panorama) will convert vertical tabs into carriage returns when importing, allowing individual data cells to contain carriage returns. After the import you can use this function to turn the vertical tabs back into carriage returns.

vtabtocr("orange↘blue") ☞ orange↩blue

Note: This function is equivalent to:

replace(thetext,chr(11),cr())

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.