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
673ce237
Unverified
Commit
673ce237
authored
Mar 15, 2017
by
ksss
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suuport custom separator
parent
6eb02a89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
mrblib/string.rb
mrblib/string.rb
+7
-4
test/t/string.rb
test/t/string.rb
+6
-0
No files found.
mrblib/string.rb
View file @
673ce237
...
...
@@ -9,12 +9,15 @@ class String
# and pass the respective line.
#
# ISO 15.2.10.5.15
def
each_line
(
&
block
)
def
each_line
(
rs
=
"
\n
"
,
&
block
)
return
block
.
call
(
self
)
if
rs
.
nil?
rs
=
rs
.
to_str
offset
=
0
rs_len
=
rs
.
length
this
=
dup
while
pos
=
this
.
index
(
"
\n
"
,
offset
)
block
.
call
(
this
[
offset
,
pos
+
1
-
offset
])
offset
=
pos
+
1
while
pos
=
this
.
index
(
rs
,
offset
)
block
.
call
(
this
[
offset
,
pos
+
rs_len
-
offset
])
offset
=
pos
+
rs_len
end
block
.
call
(
this
[
offset
,
this
.
size
-
offset
])
if
this
.
size
>
offset
self
...
...
test/t/string.rb
View file @
673ce237
...
...
@@ -341,6 +341,12 @@ assert('String#each_line', '15.2.10.5.15') do
end
assert_equal
list
,
n_list
n_list
.
clear
a
.
each_line
(
"li"
)
do
|
line
|
n_list
<<
line
end
assert_equal
[
"first li"
,
"ne
\n
second li"
,
"ne
\n
third li"
,
"ne"
],
n_list
end
assert
(
'String#empty?'
,
'15.2.10.5.16'
)
do
...
...
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