项目作者: arnoid

项目描述 :
Tool for procedural text generation
高级语言: Kotlin
项目地址: git://github.com/arnoid/string.processor.git
创建时间: 2019-10-23T08:21:06Z
项目社区:https://github.com/arnoid/string.processor

开源协议:

下载


StringProcessor

What is StringProcessor

GitHub tag (latest by date)

StringProcessor is a tool for procedural string generation.

Features

  • key-value storage
  • functions
  • conditional statements
  • recursive processing

How to

Gradle

  • Add the JitPack repository to your build file
    1. repositories {
    2. maven { url 'https://jitpack.io' }
    3. }
    Alternatively Github Packages
    1. repositories {
    2. maven {
    3. url = uri("https://maven.pkg.github.com/arnoid/string.processor")
    4. credentials {
    5. username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
    6. password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
    7. }
    8. }
    9. }
  • Add the dependency
    1. dependencies {
    2. implementation 'com.github.arnoid:string.processor:x.x.x'
    3. }

Using