Regular Expressions
-
JavaScript
How to Use Regular Expressions in JavaScript
Regular expressions, often abbreviated as regex or regexp, are powerful tools used for pattern matching and manipulation of text data.…
Read More » -
Software Development
The regex that broke a server
I’ve never thought I would see an unresponsive server due to a bad regex matcher but that’s just happened to…
Read More » -
Core Java
Using regex to hanging indent a paragraph in Java
This post shows how to hanging indent a long paragraph using regular expression. The method will consider word boundaries, which…
Read More » -
Core Java
Backreferences in Java Regular Expressions
Backreferences in Java Regular Expressions is another important feature provided by Java. To understand backreferences, we need to understand group…
Read More » -
Enterprise Java
Java Regular Expression Tutorial with Examples
When I started my career in java, regular expressions were a nightmare for me. This tutorial is aimed to help…
Read More » -
Core Java
Regular Expressions in Java – Soft Introduction
A regular expression is a kind of pattern that can be applied to text (String, in Java). Java provides the…
Read More »