Sort by

recency

|

56 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("\\b[aeiouAEIOU][a-zA-Z]*\\b");
            Matcher matcher = pattern.matcher(scanner.nextLine());
            System.out.println(matcher.find());
        }
    }
    
  • + 2 comments

    Can anyone tell me what is the difference between \D and [a-zA-Z]?

  • + 1 comment
    \b[aeiouAEIOU]\D+\b
    
  • + 0 comments

    JavaScript

    /\b[aeiou]+\D+\b/i
    
  • + 0 comments

    For Python 3

    Regex_Pattern = r'\b[aeiouAEIOU][a-zA-Z]*\b'