5 for (
unsigned char c= 0;
c < 255;
c++) {
6 if ((
c >= 65 &&
c <= 90) || (
c >= 97 &&
c <= 122)) {
16 for (
unsigned char c= 0;
c < 255;
c++) {
17 if (
c >= 48 &&
c <= 57) {
27 for (
unsigned char c= 0;
c < 255;
c++) {
28 if ((
c == 9) || (
c == 10) || (
c == 13) || (
c == 32)) {
38 for (
unsigned char c= 0;
c < 255;
c++) {
39 if ((
c ==
'0') || (
c ==
'1')) {
179 "zotero://select/library/items/2AIFJFS7");
bool starts(string s, const char *what)
bool is_alphanum(string s)
string locase_all(string s)
Converts all uppercase characters in a string to lowercase.
string unescape_guile(string s)
Unescape a Guile-syntax string.
array< string > tokenize(string s, string sep)
bool ends(string s, const char *what)
string string_union(string s1, string s2)
Union of two strings.
string remove_prefix(string s, string prefix)
Remove the prefix from s if matches.
string raw_quote(string s)
Add quotes around a string to indicate it's a string, not a symbol.
bool is_alpha(string s)
Checks if a string contains only alphabetic characters.
string recompose(array< string > a, string sep)
string string_minus(string s1, string s2)
Remove characters from one string that are in another string.
string replace(string s, string what, string by)
bool read_word(string s, int &i, string &result)
string upcase_all(string s)
Converts all lowercase characters in a string to uppercase.
string raw_unquote(string s)
Remove quotes from a string label.
string remove_suffix(string s, string suffix)
Remove the suffix from s if matches.
bool is_binary_digit(char c)
bool contains(T a, array< T > b)
Check if an array contains a specified element.
The list class represents a linked list.
void string_eq(string left, string right)
TEST_CASE("test for operator+= and advance()")