-
Notifications
You must be signed in to change notification settings - Fork 1
Home
TheOnlyTails edited this page Aug 3, 2022
·
5 revisions
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.
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:
click the badge to view instructions for other build tools
implementation("com.theonlytails:ketex:VERSION")
implementation 'com.theonlytails:ketex:VERSION'
<dependency>
<groupId>com.theonlytails</groupId>
<artifactId>ketex</artifactId>
<version>VERSION</version>
</dependency>
Visit the API docs for more info: https://ketex.theonlytails.com/