Answers for "regex return number of matches"

2

regex match number

For matching an integer number of one single char/digit, specify:
[0-9]
But for matching any number of more than one char/digit; add "+":
[0-9]+
Example for matching hour with minutes of HH:MM format in a file:
grep "[0-9]+:[0-9]+" file.txt
Posted by: Guest on October-24-2020
0

count matches with regex

use regex::Regex;

fn main() {
// count matches with regex
let re = Regex::new(r"(?i)th").unwrap();
let result = re.find_iter("The three truths.").count();
println!("result = {}", result);  // 3
}
Posted by: Guest on June-29-2021

Code answers related to "regex return number of matches"

Browse Popular Code Answers by Language