Remove surrounding quotation marks from *str if present.
Declared in <baljsn_parserutil.h>
static
bool
stripQuotes(std::string_view* str);
If the specified *str is at least two characters long and begins and ends with quotation marks ("), then remove the first and last characters; otherwise, do not modify *str. Return true if *str was modified.
true if *str was modified
| Name | Description |
|---|---|
| str | string view that may be trimmed of surrounding quotes |