1 个不稳定版本
使用旧的 Rust 2015
0.1.0 | 2018年2月14日 |
---|
#3 在 #unquote
被 2 个 crate 使用
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?
}