Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: String#strip, #strip!, #lstrip, and lstrip! strip leading NUL bytes. #2878

Merged
merged 1 commit into from
May 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions refm/api/src/_builtin/String
Original file line number Diff line number Diff line change
Expand Up @@ -2422,16 +2422,14 @@ p str # =>"123456789"
--- strip -> String

文字列先頭と末尾の空白文字を全て取り除いた文字列を生成して返します。
空白文字の定義は " \t\r\n\f\v" です。
また、文字列右側からは "\0" も取り除きますが、
左側の "\0" は取り除きません。
空白文字の定義は " \t\r\n\f\v\0" です。

#@samplecode 例
p " abc \r\n".strip #=> "abc"
p "abc\n".strip #=> "abc"
p " abc".strip #=> "abc"
p "abc".strip #=> "abc"
p " \0 abc \0".strip # => "\000 abc" # 右側のみ "\0" も取り除く
p " \0 abc \0".strip #=> "abc"

str = "\tabc\n"
p str.strip #=> "abc"
Expand All @@ -2444,9 +2442,7 @@ p str #=> "\tabc\n" (元の文字列は変化しない)
--- strip! -> self | nil

先頭と末尾の空白文字を全て破壊的に取り除きます。
空白文字の定義は " \t\r\n\f\v" です。
また、文字列右側からは "\0" も取り除きますが、
左側の "\0" は取り除きません。
空白文字の定義は " \t\r\n\f\v\0" です。

strip! は、内容を変更した self を返します。
ただし取り除く空白がなかったときは nil を返します。
Expand All @@ -2462,15 +2458,15 @@ p str #=> "abc"

str = " \0 abc \0"
str.strip!
p str # => "\000 abc" # 右側の "\0" のみ取り除かれる
p str #=> "abc"
#@end

@see [[m:String#strip]], [[m:String#lstrip]]

--- lstrip -> String

文字列の先頭にある空白文字を全て取り除いた新しい文字列を返します。
空白文字の定義は " \t\r\n\f\v" です。
空白文字の定義は " \t\r\n\f\v\0" です。

#@samplecode 例
p " abc\n".lstrip #=> "abc\n"
Expand All @@ -2483,7 +2479,7 @@ p "abc\n".lstrip #=> "abc\n"
--- lstrip! -> self | nil

文字列の先頭にある空白文字を全て破壊的に取り除きます。
空白文字の定義は " \t\r\n\f\v" です。
空白文字の定義は " \t\r\n\f\v\0" です。

lstrip! は self を変更して返します。
ただし取り除く空白がなかったときは nil を返します。
Expand Down
Loading