string remove quotes - part-cw/lambdanative GitHub Wiki
(string-remove-quotes str)
string-remove-quotes removes quotation marks from start and end of string.
| Parameter | Description |
|---|---|
| str | String input |
Example
Example 1: Trim quotation marks from a string
> (string-remove-quotes "\"This is a test.\"")
"This is a test."