我已经将我的nom
依赖项从 4.x 版本更新到 5.x 版本,发现宏take_until_and_consume
已被弃用。更新日志 说:
"这可以替换为
take_until
与take
相结合">
但我不知道如何模仿take_until_and_consume
他们。 有没有人遇到过这样的版本更新问题,或者有人知道如何做到这一点?
我的意思是这个已弃用的宏take_until_and_consume
.而这些新的:take
和take_until
我相信这是向前的,但这里有一个通用的实现:
fn take_until_and_consume<T, I, E>(tag: T) -> impl Fn(I) -> nom::IResult<I, I, E>
where
E: nom::error::ParseError<I>,
I: nom::InputTake
+ nom::FindSubstring<T>
+ nom::Slice<std::ops::RangeFrom<usize>>
+ nom::InputIter<Item = u8>
+ nom::InputLength,
T: nom::InputLength + Clone,
{
use nom::bytes::streaming::take;
use nom::bytes::streaming::take_until;
use nom::sequence::terminated;
move |input| terminated(take_until(tag.clone()), take(tag.input_len()))(input)
}
#[test]
fn test_take_until_and_consume() {
let r = take_until_and_consume::<_, _, ()>("foo")(&b"abcd foo efgh"[..]);
assert_eq!(r, Ok((&b" efgh"[..], &b"abcd "[..])));
}