Encodeforhtmlattribute()

Encodes the string to be used inside an HTML tag attribute. Escapes quotes, and special characters.

Usage

STRING = Encodeforhtmlattribute( string )
Argument Summary
string the string to encode

Calling

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

Encodeforhtmlattribute(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

Encodeforhtmlattribute( ArgumentCollection={
   string : ?
} );