diff options
author | rsiddharth <s@ricketyspace.net> | 2020-09-05 18:51:19 -0400 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2020-09-05 18:51:19 -0400 |
commit | 84cabad5fcf2224197526301ff82c08018eae7f5 (patch) | |
tree | 5df21ccb48064423d91273b997d1cade612c6fa9 /lib/str.go | |
parent | e57a76620a5de1f627a50ab63635f6f1cae39c8c (diff) |
lib: move around stripSpaceChars
* lib/b64.go (stripSpaceChars): Move to...
* lib/str.go (stripSpaceChars): ...here.
Diffstat (limited to 'lib/str.go')
-rw-r--r-- | lib/str.go | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -13,3 +13,18 @@ func FillStr(a string, l int) string { } return b } + +// Strip space and newline characters from string. +func stripSpaceChars(s string) string { + ss := "" + for i := 0; i < len(s); i++ { + if s[i] == ' ' { + continue + } + if s[i] == '\n' { + continue + } + ss += string(s[i]) + } + return ss +} |