Fixeol()

Cleans up the EOL (End Of Line) separators for the given string, replacing where necessary

Usage

STRING = Fixeol( string, eolstyle )
Argument Summary
string string
eolstyle the type of EOL terminator to replace. Valid values: LF, CRLF, SYSTEM (use the native property; default) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Fixeol(
   string=?, 
   eolstyle=?
);

Supports passing parameters as a structure using ArgumentCollection:

Fixeol( ArgumentCollection={
   string : ?, 
   eolstyle : ?
} );