Linux-Ubuntu
|
Special Characters
- Examples
-
Examples
-
The character double quote (
"
) is used to delimit a string value.
If the string contains special characters ($
, \
), they will be interpreted before returning the final result.
-
The character single quote (
'
) is used to delimit a string value.
If the string contains special characters ($
, \
), they will not be interpreted and they will be returned as is in the final result.
-
The character grave accent (
`
) is used to delimit a string value.
The whole string will be interpreted before returning the final result.