Regular Expressions in Kotlin 1. Introduction We can find use (or abuse) of regular expressions in pretty much every kind of software, from quick scripts to incredibly complex applications. In this article, we’ll see how to use regular expressions in Kotlin. We won’t be discussing regular expression syntax; a familiarity… Continue Reading kotlin-regular-expressions

An Overview of Regular Expressions Performance in Java 1. Overview In this quick tutorial, we’ll show how the pattern-matching engine works. We’ll also present different ways to optimize regular expressions in Java. For an introduction to the use of regular expressions, please refer to this article here. 2. The Pattern-Matching Engine… Continue Reading java-regex-performance