Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myconsciousness/epitaph
This package was created to take an obscure and non-intuitive regular expression and make it more reusable and intuitive. Is there a regular expression that you use a lot but look up on the internet every time? It provides presets for such frequent but unremembered spell-like regular expressions.
https://github.com/myconsciousness/epitaph
epitaph gradle intuitive-regular-expressions java library package presets regex util
Last synced: 4 days ago
JSON representation
This package was created to take an obscure and non-intuitive regular expression and make it more reusable and intuitive. Is there a regular expression that you use a lot but look up on the internet every time? It provides presets for such frequent but unremembered spell-like regular expressions.
- Host: GitHub
- URL: https://github.com/myconsciousness/epitaph
- Owner: myConsciousness
- License: apache-2.0
- Created: 2020-11-15T14:08:52.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-26T10:32:18.000Z (about 4 years ago)
- Last Synced: 2024-10-19T09:17:07.455Z (4 months ago)
- Topics: epitaph, gradle, intuitive-regular-expressions, java, library, package, presets, regex, util
- Language: Java
- Homepage: https://myconsciousness.github.io/epitaph
- Size: 303 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
![Build](https://img.shields.io/badge/Build-Automated-2980b9.svg?style=for-the-badge)
![Latest Version](https://img.shields.io/badge/Latest_Version-v1.0.2-27ae60.svg?style=for-the-badge)
![License](https://img.shields.io/badge/License-Apache_2.0-e74c3c.svg?style=for-the-badge)
![Java CI with Gradle](https://github.com/myConsciousness/epitaph/workflows/Java%20CI%20with%20Gradle/badge.svg)# Fluent Regex
**Table of Contents**
- [What is it?](#what-is-it)
- [Benefits](#benefits)
- [How To Use](#how-to-use)
- [1. Add the dependencies](#1-add-the-dependencies)
- [License](#license)
- [More Information](#more-information)## What is it?
**_More reusable and intuitive regular expressions!_**
This package was created to take an obscure and non-intuitive regular expression and make it more reusable and intuitive.
Is there a regular expression that you use a lot but look up on the internet every time? It provides presets for such frequent but unremembered spell-like regular expressions.
## Benefits
- Can use regular expressions intuitively
- Commonly used regular expressions are provided as presets
- Feature quality is high due to the wrapping of `java.lang.regex.Matcher`> **_Note:_**
> Of course, for those of you who have mastered regular expressions, this package will be an unnecessary long shot!## How To Use
### 1. Add the dependencies
> **_Note:_**
> Replace version you want to use. Check the latest [Packages](https://github.com/myConsciousness/epitaph/packages).
> Please contact me for a token to download the package.**_Maven_**
```xml
org.thinkit.common.regex
epitaph
v1.0.2
github
myConsciousness
xxxxxxxxxxxxxxxxxx
```
**_Gradle_**
```gradle
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/myConsciousness/epitaph")
credentials {
username = "myConsciousness"
password = "xxxxxxxxxxxxxxxxxx"
}
}
}dependencies {
implementation 'org.thinkit.common.regex:epitaph:v1.0.2'
}
```## License
```license
Copyright 2020 Kato Shinya.Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
in compliance with the License. You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the License for the specific language governing permissions and limitations under
the License.
```## More Information
`Epitaph` was designed and implemented by Kato Shinya, who works as a freelance developer.
Regardless of the means or content of communication, I would love to hear from you if you have any questions or concerns. I do not check my email box very often so a response may be delayed, anyway thank you for your interest!
- [Creator Profile](https://github.com/myConsciousness)
- [Creator Website](https://myconsciousness.github.io/)
- [License](https://github.com/myConsciousness/epitaph/blob/master/LICENSE)
- [Release Note](https://github.com/myConsciousness/epitaph/releases)
- [Package](https://github.com/myConsciousness/epitaph/packages)
- [File a Bug](https://github.com/myConsciousness/epitaph/issues)
- [Reference](https://myconsciousness.github.io/epitaph/)