https://github.com/theonlytails/ketex
An idiomatic Kotlin DSL for creating regular expressions.
https://github.com/theonlytails/ketex
kotlin regexp
Last synced: about 1 year ago
JSON representation
An idiomatic Kotlin DSL for creating regular expressions.
- Host: GitHub
- URL: https://github.com/theonlytails/ketex
- Owner: TheOnlyTails
- License: mit
- Created: 2022-04-14T07:29:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T20:46:04.000Z (over 3 years ago)
- Last Synced: 2025-03-17T07:09:55.482Z (over 1 year ago)
- Topics: kotlin, regexp
- Language: Kotlin
- Homepage: https://ketex.theonlytails.com/
- Size: 547 KB
- Stars: 26
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://search.maven.org/artifact/com.theonlytails/ketex)




# Ketex
An idiomatic Kotlin DSL for creating regular expressions.
Take a look at the [API docs](https://ketex.theonlytails.com/) and the [wiki](https://github.com/theonlytails/ketex/wiki).
Here's
the [`maven-metadata.xml`](https://s01.oss.sonatype.org/service/local/repositories/releases/content/com/theonlytails/ketex/maven-metadata.xml)
of this library.
## Installation
_Don't forget to replace the VERSION key with the version in the top with the Maven Central badge at the top!_
**WARNING**: this library requires you to enable context receivers, a new experminental feature available in Kotlin/JVM since v1.6.20.
#### Gradle/Kotlin
```kotlin
repositories {
mavenCentral()
}
dependencies {
implementation(group = "com.theonlytails", name = "ketex", version = "VERSION")
}
```
#### Gradle/Groovy
```gradle
repositories {
mavenCentral()
}
dependencies {
implementation fg.deobf("com.theonlytails:ketex:VERSION")
}
```