am new to regular expression.
I have comma seperated list of regular expressions like: .{8},[0-9],[^0-9A-Za-z ],[A-Z],[a-z]. I have done a split on the comma. Now am trying to match of this regex ...
Using java.util.regex.Pattern.compile() you can specify a pattern as parameter. But how can you specify flags like case-insensitive and ignore whitespaces as well?
Hi, I am new to regex. I am kind of writing a protocol log analyzer, the logs look like following - abc: xyz: blah blah blah ! no no true = yes 123: 909: wow wow wow ! no no true = no mno: tyz: alpha beta gama no no true = yes As you can see each message block is ...