how to split with multiple delimiters in python
>>> a='Beautiful, is; better*thannugly'
>>> import re
>>> re.split('; |, |*|n',a)
['Beautiful', 'is', 'better', 'than', 'ugly']
how to split with multiple delimiters in python
>>> a='Beautiful, is; better*thannugly'
>>> import re
>>> re.split('; |, |*|n',a)
['Beautiful', 'is', 'better', 'than', 'ugly']
split text on multiple separators and put into a list
use regex::Regex;
fn main() {
// split text on multiple separators and put into a list
let q = "The quick brown fox jumps over the lazy dog's back";
let separator = Regex::new(r"([ ,.]+)").expect("Invalid regex");
let words: Vec<_> = separator.split(q).into_iter().collect();
println!("{:?}", words);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us