Hello Programmers, In this post, you will learn how to solve HackerRank Matching Whitespace & Non-Whitespace 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 Whitespace & Non-Whitespace Character Characters Solution
\s
\s matches any whitespace character [ \r\n\t\f ]
.

\S
\S matches any non-white space character.

Task
You have a test string S. Your task is to match the pattern XXxXXxXX
Here, x denotes whitespace characters, and X denotes non–white space characters.
Note
This is a regex only challenge. You are not required to write code.
You have to fill the regex pattern in the blank (_________
).
HackerRank Matching Whitespace & Non-Whitespace Character Solution in Cpp
HackerRank Matching Whitespace & Non-Whitespace Character Solution in Java
public class Solution { public static void main(String[] args) { Regex_Test tester = new Regex_Test(); tester.checker("(\\S{2}\\s){2}\\S{2}"); // Use \\ instead of using \ } }
HackerRank Matching Whitespace & Non-Whitespace Character Solution in Python
Regex_Pattern = r"\S{2}\s\S{2}\s\S{2}" # Do not delete 'r'.
HackerRank Matching Whitespace & Non-Whitespace Character Solution in JavaScript
var Regex_Pattern = /\S\S\s\S\S\s\S\S/; //Do not delete '/'. Replace __________ with your regex.
HackerRank Matching Whitespace & Non-Whitespace Character Solution in PHP
$Regex_Pattern = "/[\S]{2}[\s][\S]{2}[\s][\S]{2}/"; //Do not delete '/'. Replace __________ with your regex.
Disclaimer: This problem (Matching Whitespace & Non-Whitespace Character) is generated by HackerRank but the solution is provided by Chase2learn. This tutorial is only for Educational and Learning purposes.