HackerRank Matching Word & Non-Word Character Solution

Hello Programmers, In this post, you will learn how to solve HackerRank Matching Word & Non-Word Character Solution. This problem is a part of the Regex HackerRank Series.

One more thing to add, don’t straight away look for the solutions, first try to solve the problems by yourself. If you find any difficulty after trying several times, then look for the solutions. We are going to solve the  Regex HackerRank Solutions using  CPP, JAVA, PYTHON, JavaScript & PHP Programming Languages.

HackerRank Matching Word & Non-Word Character Solution
HackerRank Matching Word & Non-Word Character Solution

HackerRank Matching Word & Non-Word Character Solution

\w
The expression \w will match any word character.
Word characters include alphanumeric characters (azAZ and 09) and underscores (_).

HackerRank Matching Word & Non-Word Character Solution

\W
\W
 matches any non-word character.
Non-word characters include characters other than alphanumeric characters (azAZ and 0–9) and underscore (_).

HackerRank Matching Word & Non-Word Character Solution

Task

You have a test string S. Your task is to match the pattern xxxXxxxxxxxxxxXxxx.
Here x denotes any word character and X denotes any nonword character.

Note

This is a regex only challenge. You are not required to write any code.
You only have to fill the regex pattern in the blank (_________).

HackerRank Matching Word & Non-Word Character Solution in Cpp

HackerRank Matching Word & Non-Word Character Solution in Java

public class Solution {    

    public static void main(String[] args) {
        
        Regex_Test tester = new Regex_Test();
        tester.checker("\\w{3}\\W\\w{10}\\W\\w{3}"); // Use \\ instead of using \ 
    
    }
}

HackerRank Matching Word & Non-Word Character Solution in Python

Regex_Pattern = r"\w{3}\W\w{10}\W\w{3}"	# Do not delete 'r'.

HackerRank Matching Word & Non-Word Character Solution in JavaScript

var Regex_Pattern = /\w\w\w\W\w\w\w\w\w\w\w\w\w\w\W\w\w\w/; //Do not delete '/'. Replace __________ with your regex. 

HackerRank Matching Word & Non-Word Character Solution in PHP

$Regex_Pattern = "/[\w]{3}[\W][\w]{10}[\W][\w]{3}/"; //Do not delete '/'. Replace __________ with your regex. 

Disclaimer: This problem (Matching Word & Non-Word Character) is generated by HackerRank but the solution is provided by Chase2learn. This tutorial is only for Educational and Learning purposes.

Sharing Is Caring