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
b81f0d0f
Commit
b81f0d0f
authored
Jun 02, 2014
by
Jun Hiroe
Committed by
Yukihiro "Matz" Matsumoto
Jun 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comments in String#lstrip, rstrip, strip, lstring_bang, rstrip_bang and strip_bang
parent
fe09686c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
0 deletions
+58
-0
mrbgems/mruby-string-ext/mrblib/string.rb
mrbgems/mruby-string-ext/mrblib/string.rb
+58
-0
No files found.
mrbgems/mruby-string-ext/mrblib/string.rb
View file @
b81f0d0f
class
String
##
# call-seq:
# str.lstrip -> new_str
#
# Returns a copy of <i>str</i> with leading whitespace removed. See also
# <code>String#rstrip</code> and <code>String#strip</code>.
#
# " hello ".lstrip #=> "hello "
# "hello".lstrip #=> "hello"
#
def
lstrip
a
=
0
z
=
self
.
size
-
1
...
...
@@ -6,6 +16,16 @@ class String
(
z
>=
0
)
?
self
[
a
..
z
]
:
""
end
##
# call-seq:
# str.rstrip -> new_str
#
# Returns a copy of <i>str</i> with trailing whitespace removed. See also
# <code>String#lstrip</code> and <code>String#strip</code>.
#
# " hello ".rstrip #=> " hello"
# "hello".rstrip #=> "hello"
#
def
rstrip
a
=
0
z
=
self
.
size
-
1
...
...
@@ -13,6 +33,15 @@ class String
(
z
>=
0
)
?
self
[
a
..
z
]
:
""
end
##
# call-seq:
# str.strip -> new_str
#
# Returns a copy of <i>str</i> with leading and trailing whitespace removed.
#
# " hello ".strip #=> "hello"
# "\tgoodbye\r\n".strip #=> "goodbye"
#
def
strip
a
=
0
z
=
self
.
size
-
1
...
...
@@ -21,16 +50,45 @@ class String
(
z
>=
0
)
?
self
[
a
..
z
]
:
""
end
##
# call-seq:
# str.lstrip! -> self or nil
#
# Removes leading whitespace from <i>str</i>, returning <code>nil</code> if no
# change was made. See also <code>String#rstrip!</code> and
# <code>String#strip!</code>.
#
# " hello ".lstrip #=> "hello "
# "hello".lstrip! #=> nil
#
def
lstrip!
s
=
self
.
lstrip
(
s
==
self
)
?
nil
:
self
.
replace
(
s
)
end
##
# call-seq:
# str.rstrip! -> self or nil
#
# Removes trailing whitespace from <i>str</i>, returning <code>nil</code> if
# no change was made. See also <code>String#lstrip!</code> and
# <code>String#strip!</code>.
#
# " hello ".rstrip #=> " hello"
# "hello".rstrip! #=> nil
#
def
rstrip!
s
=
self
.
rstrip
(
s
==
self
)
?
nil
:
self
.
replace
(
s
)
end
##
# call-seq:
# str.strip! -> str or nil
#
# Removes leading and trailing whitespace from <i>str</i>. Returns
# <code>nil</code> if <i>str</i> was not altered.
#
def
strip!
s
=
self
.
strip
(
s
==
self
)
?
nil
:
self
.
replace
(
s
)
...
...
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