This function changes a string into a safe string that can be used as an XML tag. This function is used for saving and retrieving settings.
Note: To create safe tag names, all characters other than numbers, letters and underscores are replaced by underscores.
var setting = safeTagName("My setting");
Parameter | Data type | Required | Description |
---|---|---|---|
string | string | true | The string to made safe |
Value | String Value |
---|---|
string | The safe version of the string |