Core Function StripCSlashes
From Sputnik Wiki
				
				
				(Difference between revisions)
				
																
				
				
								
				| m (1 revision) | m (1 revision) | 
Latest revision as of 12:37, 14 June 2015
StripCSlashes( <str> )
| Contents | 
Description
Unescape string escaped with AddCSlashes().
Returns a string with backslashes stripped off. Recognizes C-like \n, \r ..., octal and hexadecimal representation.
Parameters
str
The string to be unescaped.
Return Value
Returns the unescaped string.
Remarks
See AddCSlashes( <str>, <charlist> ).
Example
echo StripCSlashes(@"Hello\nCat\x44"); // Prints // Hello // CatD
