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
3dce1fb3
Commit
3dce1fb3
authored
Jun 16, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2397 from suzukaze/add-string-slice_bang
Implement String#slice!
parents
0042e586
00fa8097
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
128 additions
and
0 deletions
+128
-0
mrbgems/mruby-string-ext/mrblib/string.rb
mrbgems/mruby-string-ext/mrblib/string.rb
+70
-0
mrbgems/mruby-string-ext/test/string.rb
mrbgems/mruby-string-ext/test/string.rb
+58
-0
No files found.
mrbgems/mruby-string-ext/mrblib/string.rb
View file @
3dce1fb3
...
@@ -146,4 +146,74 @@ class String
...
@@ -146,4 +146,74 @@ class String
[
""
,
""
,
self
]
[
""
,
""
,
self
]
end
end
end
end
##
# call-seq:
# str.slice!(fixnum) -> new_str or nil
# str.slice!(fixnum, fixnum) -> new_str or nil
# str.slice!(range) -> new_str or nil
# str.slice!(other_str) -> new_str or nil
#
# Deletes the specified portion from <i>str</i>, and returns the portion
# deleted.
#
# string = "this is a string"
# string.slice!(2) #=> "i"
# string.slice!(3..6) #=> " is "
# string.slice!("r") #=> "r"
# string #=> "thsa sting"
#
def
slice!
(
arg1
,
arg2
=
nil
)
raise
"wrong number of arguments (for 1..2)"
if
arg1
==
nil
&&
arg2
==
nil
if
arg1
!=
nil
&&
arg2
!=
nil
idx
=
arg1
idx
+=
self
.
size
if
arg1
<
0
if
idx
>=
0
&&
idx
<
self
.
size
&&
arg2
>
0
str
=
self
[
idx
,
arg2
]
else
return
nil
end
else
validated
=
false
if
arg1
.
kind_of?
(
Range
)
beg
=
arg1
.
begin
ed
=
arg1
.
end
beg
+=
self
.
size
if
beg
<
0
ed
+=
self
.
size
if
ed
<
0
validated
=
true
elsif
arg1
.
kind_of?
(
String
)
validated
=
true
else
idx
=
arg1
idx
+=
self
.
size
if
arg1
<
0
validated
=
true
if
idx
>=
0
&&
arg1
<
self
.
size
end
if
validated
str
=
self
[
arg1
]
else
return
nil
end
end
unless
str
==
nil
||
str
==
""
if
arg1
!=
nil
&&
arg2
!=
nil
idx
=
arg1
>=
0
?
arg1
:
self
.
size
+
arg1
str2
=
self
[
0
...
idx
]
+
self
[
idx
+
arg2
..-
1
]
else
if
arg1
.
kind_of?
(
Range
)
idx
=
beg
>=
0
?
beg
:
self
.
size
+
beg
idx2
=
ed
>=
0
?
ed
:
self
.
size
+
ed
str2
=
self
[
0
...
idx
]
+
self
[
idx2
+
1
..-
1
]
elsif
arg1
.
kind_of?
(
String
)
idx
=
self
.
index
(
arg1
)
str2
=
self
[
0
...
idx
]
+
self
[
idx
+
arg1
.
size
..-
1
]
unless
idx
==
nil
else
idx
=
arg1
>=
0
?
arg1
:
self
.
size
+
arg1
str2
=
self
[
0
...
idx
]
+
self
[
idx
+
1
..-
1
]
end
end
self
.
replace
(
str2
)
unless
str2
==
nil
end
str
end
end
end
mrbgems/mruby-string-ext/test/string.rb
View file @
3dce1fb3
...
@@ -193,3 +193,61 @@ assert('String#clear') do
...
@@ -193,3 +193,61 @@ assert('String#clear') do
assert_equal
(
""
,
s
)
# s is cleared
assert_equal
(
""
,
s
)
# s is cleared
assert_not_equal
(
""
,
a
)
# a should not be affected
assert_not_equal
(
""
,
a
)
# a should not be affected
end
end
assert
(
'String#slice!'
)
do
a
=
"AooBar"
b
=
a
.
dup
assert_equal
"A"
,
a
.
slice!
(
0
)
assert_equal
"AooBar"
,
b
a
=
"FooBar"
assert_equal
"r"
,
a
.
slice!
(
-
1
)
assert_equal
"FooBa"
,
a
a
=
"FooBar"
assert_nil
a
.
slice!
(
6
)
assert_nil
a
.
slice!
(
-
7
)
assert_equal
"FooBar"
,
a
a
=
"FooBar"
assert_equal
"Foo"
,
a
.
slice!
(
0
,
3
)
assert_equal
"Bar"
,
a
a
=
"FooBar"
assert_equal
"Bar"
,
a
.
slice!
(
-
3
,
3
)
assert_equal
"Foo"
,
a
a
=
"FooBar"
assert_nil
a
.
slice!
(
6
,
2
)
assert_equal
"FooBar"
,
a
a
=
"FooBar"
assert_nil
a
.
slice!
(
-
7
,
10
)
assert_equal
"FooBar"
,
a
a
=
"FooBar"
assert_equal
"Foo"
,
a
.
slice!
(
0
..
2
)
assert_equal
"Bar"
,
a
a
=
"FooBar"
assert_equal
"Bar"
,
a
.
slice!
(
-
3
..-
1
)
assert_equal
"Foo"
,
a
a
=
"FooBar"
assert_equal
""
,
a
.
slice!
(
6
..
2
)
assert_equal
"FooBar"
,
a
a
=
"FooBar"
assert_nil
a
.
slice!
(
-
10
..-
7
)
assert_equal
"FooBar"
,
a
a
=
"FooBar"
assert_equal
"Foo"
,
a
.
slice!
(
"Foo"
)
assert_equal
"Bar"
,
a
a
=
"FooBar"
assert_nil
a
.
slice!
(
"xyzzy"
)
assert_equal
"FooBar"
,
a
assert_raise
(
ArgumentError
)
{
"foo"
.
slice!
}
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