0
哪些空格字符做String
方法lstrip
,lstrip!
, rstrip
,rstrip!
,strip
,strip!
刪除?Ruby:字符串#帶有哪些空白字符?
哪些空格字符做String
方法lstrip
,lstrip!
, rstrip
,rstrip!
,strip
,strip!
刪除?Ruby:字符串#帶有哪些空白字符?
水平/垂直製表符,換行符,頁面/表單提要,回車符和空格。
對於ASCII字符串,strip
方法使用String類的ascii_isspace
方法,該方法查找isspacetable
中的字符。 This table identifies character codes 9-13 and 32 as whitespace.。