#string #quoted #quote #unquote

quoted_strings

提供对引用字符串的迭代器

1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2018年2月14日

#3#unquote


2 个 crate 使用

MIT 许可证

6KB
114

quoted_strings

如果您需要处理可能包含引号的字符串,并且这些字符串由空格分隔,那么这个库就是您所需要的!

extern crate quoted_strings;

use quoted_strings::QuotedParts;

fn main() {
  let string = r#"
    This sure is some "sample text," isn't it?
  "#;

  for part in QuotedParts::from(string) {
    println!("{}", part);
  }

  // This
  // sure
  // is
  // some
  // sample text,
  // isn't
  // it?
}

无运行时依赖