Skip to content

Commit

Permalink
address review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kiszk committed Sep 26, 2017
1 parent 243f681 commit d39c648
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -498,15 +498,15 @@ private UTF8String copyUTF8String(int start, int end) {

public UTF8String trim() {
int s = 0;
int e = this.numBytes - 1;
// skip all of the space (0x20) in the left side
while (s < this.numBytes && getByte(s) == 0x20) s++;
if (s == this.numBytes) {
// empty string
return EMPTY_UTF8;
}
// skip all of the space (0x20) in the right side
while (e >= 0 && getByte(e) == 0x20) e--;
int e = this.numBytes - 1;
while (e > s && getByte(e) == 0x20) e--;
return copyUTF8String(s, e);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,13 @@ public void substring() {

@Test
public void trims() {
assertEquals(fromString("1"), fromString("1").trim());

assertEquals(fromString("hello"), fromString(" hello ").trim());
assertEquals(fromString("hello "), fromString(" hello ").trimLeft());
assertEquals(fromString(" hello"), fromString(" hello ").trimRight());

assertEquals(EMPTY_UTF8, EMPTY_UTF8.trim());
assertEquals(EMPTY_UTF8, fromString(" ").trim());
assertEquals(EMPTY_UTF8, fromString(" ").trimLeft());
assertEquals(EMPTY_UTF8, fromString(" ").trimRight());
Expand Down

0 comments on commit d39c648

Please sign in to comment.