-
Python👁 Image
How to Tokenize Text in Python
Tokenization is one of the most fundamental steps in Natural Language Processing (NLP). It involves breaking text into smaller units…
Read More » -
Java👁 Image
Remove Insignificant Zeros From a Numeric String Example
1. Introduction Insignificant zeros refer to zeros that don’t affect the value of the number. In this example, I will…
Read More » -
JavaScript👁 Image
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👁 Image
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👁 Image
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👁 Image
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-interview-questions-answers
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👁 Image
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 »
