Expand description
String parsing helpers for WPL: quoted string, raw string, simple quoted and escapes.
Re-exports§
pub use utils::decode_escapes;
Functions§
- parse_
quoted_ string - Parse a quoted string content with common escapes: " \ \n \t \r \xHH.
- parse_
raw_ string - Parse a raw string r#“…”# or r“…“ (compat) without processing escapes.
- parse_
simple_ quoted - Parse a simple quoted string without escapes (read until next “).