2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2006--2010 Jan Nieuwenhuizen <janneke@gnu.org>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "std-string.hh"
21 #include "string-convert.hh"
30 to_string (char c
, int n
)
32 return string (max (n
, 0), c
);
36 to_string (double f
, char const *format
)
38 return String_convert::double_string (f
, format
);
42 to_string (int i
, char const *format
)
44 return String_convert::int_string (i
, format
);
50 return String_convert::bool_string (b
);
56 return String_convert::long_string (b
);
60 to_string (long unsigned b
)
62 return String_convert::unsigned_string (b
);
66 to_string (unsigned u
)
68 return String_convert::unsigned_string (u
);
72 to_string (I64 b
, char const *format
)
74 return String_convert::i64_string (b
, format
);
78 to_string (char const *format
, ...)
81 va_start (args
, format
);
82 string str
= String_convert::vform_string (format
, args
);
88 TODO: this O(n^2) in #occurences of find, due to repeated copying.
91 replace_all (string
*str
, string
const &find
, string
const &replace
)
93 ssize len
= find
.length ();
94 ssize replen
= replace
.length ();
95 for (ssize i
= str
->find (find
); i
!= NPOS
; i
= str
->find (find
, i
+ replen
))
96 *str
= str
->replace (i
, len
, replace
);
101 replace_all (string
*str
, char find
, char replace
)
103 for (ssize i
= str
->find (find
); i
!= NPOS
; i
= str
->find (find
, i
+ 1))
109 string_copy (string s
)
111 ssize len
= s
.length ();
112 char *dest
= new char[len
+ 1];
113 copy (s
.begin (), s
.end (), dest
);
120 string_compare (string
const &a
, string
const &b
)
122 return a
.compare (b
);
125 #include "std-vector.hh"
128 string_split (string str
, char c
)
130 ssize i
= str
.find (c
);
135 string s
= str
.substr (0, i
);
138 str
= str
.substr (i
);
147 string_join (vector
<string
> const &strs
, string infix
)
150 for (vsize i
= 0; i
< strs
.size (); i
++)