-
Notifications
You must be signed in to change notification settings - Fork 2
/
mixed.json
47 lines (47 loc) · 899 Bytes
/
mixed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"dictionary": {
"file": {
"bin1": "bin1.data",
"bin2": "bin2.data",
"bin5": "bin5.data"
},
"decimal": {
"be ": [98, 101, 32],
"processing.":[112, 114, 111, 99, 101, 115, 115, 105, 110, 103, 46]
},
"hexadecimal": {
"EndOfTheLine": ["0A"],
"whitespace": ["20"]
},
"text": {
"Would": "Would",
"anotherR": "another result",
"after": "after",
"regards": "With kind regards!"
},
"composite": [{
"composite 001": ["Would", "whitespace", "be ", "anotherR", "EndOfTheLine"]
},
{
"complexOne": ["after", "whitespace", "processing."]
}
]
},
"todo": [
{
"replace": {
"bin1": "bin2"
}
},
{
"replace": {
"complexOne": "regards"
}
},
{
"replace": {
"composite 001": "bin5"
}
}
]
}