Macro nom::take_until_s [−][src]
macro_rules! take_until_s { ($input:expr, $substr:expr) => { ... }; }
Deprecating in 4.0.0
: Please use take_until
instead
take_until_s!(&str) => &str -> IResult<&str, &str>
generates a parser consuming all chars until the specified string is found and leaves it in the remaining input