-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.app
153 lines (127 loc) · 3.79 KB
/
string.app
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
module elib/string
type String{
substring(Int,Int):String
}
entity StringPair {
left :: String
right :: String
}
// does string have no other characters than whitespace?
function isEmptyString(x : String) : Bool {
return x == null || (x == "") || /[\n\t\r\ ]+/.replaceAll("", x) == "";
}
// remove trailing whitespace
function removeTrailingSpaces(x : String) : String {
return /^[\n\t\ ]+/.replaceAll("",/[\n\t\ ]+$/.replaceAll("",x));
}
function words(x : String) : List<String> {
return /[\t\n\ ]+/.split(removeTrailingSpaces(x));
}
function lines(x: String): List<String> {
return /[\n]/.split(x);
}
function prefix(pref: String, lines: List<String>): List<String> {
return [pref + line | line: String in lines];
}
function text(lines: List<String>): String {
var t := "";
for(line: String in lines) { t := t + line + "\n"; }
return t;
}
function commentOut(comm: String, x: String): String {
return text(prefix(comm, lines(x)));
}
function splitCommaSeparated(x : String) : List<String> {
return [removeTrailingSpaces(y).toLowerCase() | y : String in x.split(",") where !isEmptyString(y)];
}
function paragraphs(x : String) : List<String> {
return /[\n]([\t\ ]*[\n])+/.split(x);
}
function keyFromName(name : String) : String {
return (/(\ )+|(\/)+/.replaceAll("-",removeTrailingSpaces(name))).toLowerCase();
}
// replace multiple adjacent whitespace with single space
// remove trailing whitespace
function normalizeName(name : String) : String {
return /[\n\t\ ]+/.replaceAll(" ", removeTrailingSpaces(name));
}
function normalizeCiteKey(key : String) : String {
return makeValidKeyForURL(/[\/+\n\t\ ]+/.replaceAll("-", removeTrailingSpaces(key)));
}
function isValidKeyForURL(url : String) : Bool {
return /[a-zA-Z0-9:\-\.]+/.match(url);
}
function makeValidKeyForURL(url : String) : String {
return /[^a-zA-Z0-9:\-\.]/.replaceAll("", url);
}
function prefix(x : String) : String {
/*
var p : String := "";
var chars : List<String> := x.split();
for(i : Int from 0 to chars.length) { p := p + chars.get(i); }
return p;
*/
return x;
}
function substring(x : String, i : Int, j : Int) : String {
/*
var p : String := "";
var chars : List<String> := x.split();
for(i : Int from max(0, min(i, chars.length)) to min(j, chars.length)) { p := p + chars.get(i); }
return p;
*/
return x.substring(i,j);
}
function isURL(x : String) : Bool {
return !isEmptyString(x) && x != "http://" && x != "http:///";
/* /"http:\/\/\*"/.match(x) && !isEmptyString(/"http:\/\/"/.replaceAll("",x)); */
}
function isAffiliation(x : String) : Bool {
return !isEmptyString(x);
}
function isnull(x : String) : String {
if(x == null) { return ""; } else { return x; }
}
function abbreviate(s : String, length : Int) : String {
if(s.length() <= length) {
return s;
} else {
return prefix(s, length - 4) + " ...";
}
}
function abbreviateNE(s : String, length : Int) : String {
if(s.length() <= length) {
return s;
} else {
return prefix(s, length);
}
}
function concat(xs: List<String>, sep: String): String {
if(xs.length == 0) {
return "";
} else {
var x := xs[0];
var i := 1;
while(i < xs.length) {
x := x + sep + xs[i];
i := i + 1;
}
return x;
}
}
type String{
substring(Int):String
substring(Int,Int):String
}
function prefix(s : String, length : Int) : String {
return s.substring(0, length);
/*
if(s.length() <= length) {
return s;
} else {
var sChar := s.split();
sChar.removeAt(length);
return prefix(sChar.concat(), length);
}
*/
}