fn strip_prefix_ci<'a>(text: &'a str, prefix: &str) -> Option<&'a str>
Case-insensitive prefix strip: if text starts with prefix (case-insensitive), returns the rest of text (preserving original case).
text
prefix