Negative Lookbehind

Sort by

recency

|

28 Discussions

|

  • + 0 comments

    Java 15:

    import java.io.*;
    import java.util.*;
    import java.util.regex.Pattern;
    import java.util.regex.Matcher;
    public class Solution {
        public static void main(String[] args) {
            Scanner scanner = new Scanner(System.in);
            Pattern pattern = Pattern.compile("(?<![aeiouAEIOU])(.)");
            Matcher matcher = pattern.matcher(scanner.nextLine());
            int count = 0; 
            while(matcher.find())   count++;
            System.out.println("Number of matches : "+count);
        }
    }
    
  • + 0 comments

    Regex_Pattern = r"(?

  • + 0 comments

    With Python

    Regex_Pattern = r"(?<![aoueiAEIOU])."
    
  • + 0 comments

    can also use lookahead r".(?![aeiouAEIOU])"

  • [deleted]Challenge Author
    + 1 comment

    Regex_Pattern = r"(?<![aeiouAEIOU])."