1
1
<!-- markdown-link-check-disable -->
2
2
[ ![ Maven Central] ( https://img.shields.io/maven-central/v/io.github.noncat-lang/java-template-engine )] ( https://search.maven.org/artifact/io.github.noncat-lang/java-template-engine )
3
- [ ![ ] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/unit-test.yml/badge.svg )] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/unit-test.yml?query=branch%3Amain )
4
- [ ![ ] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/semgrep.yml/badge.svg )] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/semgrep.yml?query=branch%3Amain )
5
- [ ![ ] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/dependency-check.yml/badge.svg )] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/dependency-check.yml?query=branch%3Amain )
3
+ [ ![ Unit Test] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/unit-test.yml/badge.svg )] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/unit-test.yml?query=branch%3Amain )
4
+ [ ![ Semgrep] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/semgrep.yml/badge.svg )] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/semgrep.yml?query=branch%3Amain )
5
+ [ ![ Dependency Check] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/dependency-check.yml/badge.svg )] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/dependency-check.yml?query=branch%3Amain )
6
+ [ ![ Markdown Link Check] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/markdown-link-check.yml/badge.svg )] ( https://github.com/noncat-lang/java-template-engine/actions/workflows/markdown-link-check.yml?query=branch%3Amain )
6
7
<!-- markdown-link-check-enable -->
7
-
8
8
# Java Template Engine
9
9
10
10
Java Template Engine demonstrates one concept of [ Noncat] ( https://github.com/noncat-lang/noncat ) within the Java programming language.
@@ -20,33 +20,39 @@ Using Java Template Engine one can only define regular languages, hence it is no
20
20
21
21
TODO
22
22
23
- ### Format
24
-
23
+ ### Format / Unparse
25
24
``` Java
26
- Token token = Token . of(" [a-zA-Z]+" );
27
- Template template = Template . of(" Hello ${name}!" )
28
- .withToken(" name" , token);
29
-
30
- Values values = Values . of(" name" , " World" );
31
- String output = template. format(values);
32
-
33
- System . out. println(output);
25
+ createOutput(" new,World" );
26
+ ```
27
+ ``` Java
28
+ String createOutput(String name) {
29
+ Token token = Token . of(" [a-zA-Z ]+" ). withEncoding(Encoding . of(" ," , " " ));
30
+ Template template = Template . of(" Hello ${name}!" )
31
+ .withToken(" name" , token);
32
+
33
+ Values values = Values . of(" name" , name);
34
+ return template. format(values);
35
+ }
34
36
```
35
37
```
36
- Hello World!
38
+ Hello new World!
37
39
```
38
40
39
41
### Parse
40
42
41
43
``` Java
42
- Token token = Token . of(" [a-zA-Z]+" );
43
- Template template = Template . of(" Hello ${name}!" )
44
- .withToken(" name" , token);
45
-
46
- Values data = template. parse(" Hello World!" );
47
-
48
- System . out. println(data);
44
+ handleInput(" Hello new World!" );
45
+ ```
46
+ ``` Java
47
+ Optional<String > handleInput(String input) {
48
+ Token token = Token . of(" [a-zA-Z ]+" ). withDecoding(Decoding . of(" " , " ," ));
49
+ Template template = Template . of(" Hello ${name}!" )
50
+ .withToken(" name" , token);
51
+
52
+ Values data = template. parse(input);
53
+ return data. get(" name" );
54
+ }
49
55
```
50
56
```
51
- {name= World}
57
+ Optional[new, World]
52
58
```
0 commit comments