Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
11edea38
Commit
11edea38
authored
Mar 08, 2013
by
Tomoyuki Sahara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add "strip" family to String.
parent
aa73a106
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
92 additions
and
0 deletions
+92
-0
mrbgems/mruby-string-ext/mrblib/string.rb
mrbgems/mruby-string-ext/mrblib/string.rb
+38
-0
mrbgems/mruby-string-ext/test/string.rb
mrbgems/mruby-string-ext/test/string.rb
+54
-0
No files found.
mrbgems/mruby-string-ext/mrblib/string.rb
0 → 100644
View file @
11edea38
class
String
def
lstrip
a
=
0
z
=
self
.
size
-
1
a
+=
1
while
"
\f\n\r\t\v
"
.
include?
(
self
[
a
])
and
a
<=
z
(
z
>=
0
)
?
self
[
a
..
z
]
:
""
end
def
rstrip
a
=
0
z
=
self
.
size
-
1
z
-=
1
while
"
\f\n\r\t\v\0
"
.
include?
(
self
[
z
])
and
a
<=
z
(
z
>=
0
)
?
self
[
a
..
z
]
:
""
end
def
strip
a
=
0
z
=
self
.
size
-
1
a
+=
1
while
"
\f\n\r\t\v
"
.
include?
(
self
[
a
])
and
a
<=
z
z
-=
1
while
"
\f\n\r\t\v\0
"
.
include?
(
self
[
z
])
and
a
<=
z
(
z
>=
0
)
?
self
[
a
..
z
]
:
""
end
def
lstrip!
s
=
self
.
lstrip
(
s
==
self
)
?
nil
:
self
.
replace
(
s
)
end
def
rstrip!
s
=
self
.
rstrip
(
s
==
self
)
?
nil
:
self
.
replace
(
s
)
end
def
strip!
s
=
self
.
strip
(
s
==
self
)
?
nil
:
self
.
replace
(
s
)
end
end
mrbgems/mruby-string-ext/test/string.rb
View file @
11edea38
...
...
@@ -16,3 +16,57 @@ end
assert
(
'String#dump'
)
do
"foo"
.
dump
==
"
\"
foo
\"
"
end
assert
(
'String#strip'
)
do
s
=
" abc "
s
.
strip
""
.
strip
==
""
and
"
\t\r\n\f\v
"
.
strip
==
""
and
"
\0
a
\0
"
.
strip
==
"
\0
a"
and
"abc"
.
strip
==
"abc"
and
" abc"
.
strip
==
"abc"
and
"abc "
.
strip
==
"abc"
and
" abc "
.
strip
==
"abc"
and
s
==
" abc "
end
assert
(
'String#lstrip'
)
do
s
=
" abc "
s
.
lstrip
""
.
lstrip
==
""
and
"
\t\r\n\f\v
"
.
lstrip
==
""
and
"
\0
a
\0
"
.
lstrip
==
"
\0
a
\0
"
and
"abc"
.
lstrip
==
"abc"
and
" abc"
.
lstrip
==
"abc"
and
"abc "
.
lstrip
==
"abc "
and
" abc "
.
lstrip
==
"abc "
and
s
==
" abc "
end
assert
(
'String#rstrip'
)
do
s
=
" abc "
s
.
rstrip
""
.
rstrip
==
""
and
"
\t\r\n\f\v
"
.
rstrip
==
""
and
"
\0
a
\0
"
.
rstrip
==
"
\0
a"
and
"abc"
.
rstrip
==
"abc"
and
" abc"
.
rstrip
==
" abc"
and
"abc "
.
rstrip
==
"abc"
and
" abc "
.
rstrip
==
" abc"
and
s
==
" abc "
end
assert
(
'String#strip!'
)
do
s
=
" abc "
t
=
"abc"
s
.
strip!
==
"abc"
and
s
==
"abc"
and
t
.
strip!
==
nil
end
assert
(
'String#lstrip!'
)
do
s
=
" abc "
t
=
"abc "
s
.
lstrip!
==
"abc "
and
s
==
"abc "
and
t
.
lstrip!
==
nil
end
assert
(
'String#rstrip!'
)
do
s
=
" abc "
t
=
" abc"
s
.
rstrip!
==
" abc"
and
s
==
" abc"
and
t
.
rstrip!
==
nil
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment