ChrisM
Joined: 28 Nov 2004 Posts: 58
|
Posted: Sat Feb 26, 2005 1:03 pm Post subject: What is `r |
|
|
In the help files for Loop (parse a string) there is this example:
| Quote: | ; Example #2: This one is useful whenever the clipboard contains
; files (such as those copied from an open Explorer window).
; The program automatically converts such files to their file names.
Loop, parse, clipboard, `n, `r
|
Which means the `r is an omitted character?
And the help for Clipboard contains these lines:
| Quote: | To write the filenames on the clipboard to a file via FileAppend, first replace `r`n with `n as in this example:
StringReplace, clipboard, clipboard, `r`n, `n, All
|
Does `r always appear before `n?
Is it a carriage return?
Thanks _________________ ChrisM |
|