Function vibha::filter_text_only [] [src]

pub fn filter_text_only<'a, V: Borrow<Vec<ModalSlice<'a>>>>(
    vec_borrow: V
) -> String

Filters the results of mode_split_str into just the textual part.

extern crate vibha;
use vibha::*;

assert_eq!(filter_text_only(mode_split_str("\x01A\x01B\x02foo")), "foo");