online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ import java.util.regex.Pattern; import java.util.regex.Matcher; public class Main { private static final Pattern pattern = Pattern.compile("^[\\w][\\S]{0,8}$", Pattern.MULTILINE); public static void main(String[] args) { final String string = "Hello!@+\n" + "t123123\n" + "H123!#\n" + "@adadsa\n" + "@3asdasd\n" + "%sdf\n" + "Helloworld1"; Matcher matcher = pattern.matcher(string); while(matcher.find()) System.out.println(matcher.group(0)); } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue