VOOZH about

URL: https://www.javacodegeeks.com/tag/regular-expressions

⇱ Regular Expressions Archives - Java Code Geeks


  • Python👁 Image
    Omozegie AziegbeOctober 16th, 2025
    0 1,363

    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
    Mary ZhengFebruary 19th, 2025
    0 506

    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
    Java Code GeeksMay 26th, 2023
    0 487

    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
    Vlad MihalceaFebruary 28th, 2014
    3 152

    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
    Yifan PengJanuary 26th, 2014
    0 255

    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
    ProgramCreekSeptember 3rd, 2013
    0 144

    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
    Pankaj KumarNovember 12th, 2012
    9 638

    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
    Farhan KhwajaFebruary 7th, 2012
    0 136

    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 »
Back to top button
Close