Matching Word & Non-Word Character

Sort by

recency

|

74 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("\\w{3}\\W\\w{10}\\W\\w{3}");
            Matcher matcher = pattern.matcher(scanner.nextLine());
            boolean found = matcher.find();
            System.out.println(found);
        }
    }
    
  • + 0 comments
    Regex_Pattern = r"\w{3}\.\w+\.\w{3}"	# Do not delete 'r'.
    
    import re
    
  • + 0 comments
    \w{3}\W\w{10}\W\w{3}
    
  • + 0 comments

    Solution

    Regex_Pattern = /(\w{3})\W\w{10}\W(\w{3})/;

  • + 0 comments

    Regex_Pattern = r"\w{3}\W\w{10}\W\w{3}"