OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // A package of simple functions to manipulate strings. | 5 // A package of simple functions to manipulate strings. |
6 package strings | 6 package strings |
7 | 7 |
8 import ( | 8 import ( |
9 "unicode" | 9 "unicode" |
10 "utf8" | 10 "utf8" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 // SplitAfter splits the string s after each instance of sep, returning an array
of substrings of s. | 154 // SplitAfter splits the string s after each instance of sep, returning an array
of substrings of s. |
155 // If sep is empty, SplitAfter splits s after each UTF-8 sequence. | 155 // If sep is empty, SplitAfter splits s after each UTF-8 sequence. |
156 // If n > 0, SplitAfter splits s into at most n substrings; the last substring w
ill be the unsplit remainder. | 156 // If n > 0, SplitAfter splits s into at most n substrings; the last substring w
ill be the unsplit remainder. |
157 func SplitAfter(s, sep string, n int) []string { | 157 func SplitAfter(s, sep string, n int) []string { |
158 return genSplit(s, sep, len(sep), n) | 158 return genSplit(s, sep, len(sep), n) |
159 } | 159 } |
160 | 160 |
161 // Fields splits the string s around each instance of one or more consecutive wh
ite space | 161 // Fields splits the string s around each instance of one or more consecutive wh
ite space |
162 // characters, returning an array of substrings of s or an empty list if s conta
ins only white space. | 162 // characters, returning an array of substrings of s or an empty list if s conta
ins only white space. |
163 func Fields(s string) []string { | 163 func Fields(s string) []string { |
| 164 // First count the fields. |
164 n := 0 | 165 n := 0 |
165 inField := false | 166 inField := false |
166 for _, rune := range s { | 167 for _, rune := range s { |
167 wasInField := inField | 168 wasInField := inField |
168 inField = !unicode.IsSpace(rune) | 169 inField = !unicode.IsSpace(rune) |
169 if inField && !wasInField { | 170 if inField && !wasInField { |
170 n++ | 171 n++ |
171 } | 172 } |
172 } | 173 } |
173 | 174 |
| 175 // Now create them. |
174 a := make([]string, n) | 176 a := make([]string, n) |
175 na := 0 | 177 na := 0 |
176 » fieldStart := -1 | 178 » fieldStart := -1 // Set to -1 when looking for start of field. |
177 for i, rune := range s { | 179 for i, rune := range s { |
178 if unicode.IsSpace(rune) { | 180 if unicode.IsSpace(rune) { |
179 if fieldStart >= 0 { | 181 if fieldStart >= 0 { |
180 a[na] = s[fieldStart:i] | 182 a[na] = s[fieldStart:i] |
181 na++ | 183 na++ |
182 fieldStart = -1 | 184 fieldStart = -1 |
183 } | 185 } |
184 } else if fieldStart == -1 { | 186 } else if fieldStart == -1 { |
185 fieldStart = i | 187 fieldStart = i |
186 } | 188 } |
187 } | 189 } |
188 » if fieldStart != -1 { | 190 » if fieldStart != -1 { // Last field might end at EOF. |
189 a[na] = s[fieldStart:] | 191 a[na] = s[fieldStart:] |
190 na++ | |
191 } | 192 } |
192 » return a[0:na] | 193 » return a |
193 } | 194 } |
194 | 195 |
195 // Join concatenates the elements of a to create a single string. The separato
r string | 196 // Join concatenates the elements of a to create a single string. The separato
r string |
196 // sep is placed between elements in the resulting string. | 197 // sep is placed between elements in the resulting string. |
197 func Join(a []string, sep string) string { | 198 func Join(a []string, sep string) string { |
198 if len(a) == 0 { | 199 if len(a) == 0 { |
199 return "" | 200 return "" |
200 } | 201 } |
201 if len(a) == 1 { | 202 if len(a) == 1 { |
202 return a[0] | 203 return a[0] |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 } | 318 } |
318 rune, wid = utf8.DecodeRuneInString(s[end-wid : end]) | 319 rune, wid = utf8.DecodeRuneInString(s[end-wid : end]) |
319 } | 320 } |
320 if !unicode.IsSpace(rune) { | 321 if !unicode.IsSpace(rune) { |
321 break | 322 break |
322 } | 323 } |
323 end -= wid | 324 end -= wid |
324 } | 325 } |
325 return s[start:end] | 326 return s[start:end] |
326 } | 327 } |
OLD | NEW |