Skip to content
TheOnlyTails edited this page Aug 3, 2022 · 5 revisions

Welcome to the Ketex wiki!

Ketex is a Kotlin/JVM library which provides a friendly and idiomatic DSL for creating regular expressions (RegExp) in Kotlin.

For API documentation, please take a look at the docs.

For usage instructions, you can use the next wiki page.

Installation

Ketex can be added to any Kotlin/JVM project with your existing build tools.

WARNING: this library requires you to enable context receivers, a new experminental feature available in Kotlin/JVM since version 1.6.20.

Replace VERSION in these lines with the following version: Maven metadata URL

click the badge to view instructions for other build tools

Gradle/Kotlin

implementation("com.theonlytails:ketex:VERSION")

Gradle/Groovy

implementation 'com.theonlytails:ketex:VERSION'

Maven

<dependency>
  <groupId>com.theonlytails</groupId>
  <artifactId>ketex</artifactId>
  <version>VERSION</version>
</dependency>
Clone this wiki locally