用法:
rstrip([pred=isspace,] str::AbstractString) -> SubString
rstrip(str::AbstractString, chars) -> SubString
从 str
中删除尾随字符,这些字符由 chars
指定或函数 pred
返回的那些字符 true
。
默认行为是删除尾随空格和分隔符:有关详细信息,请参阅
。isspace
可选的 chars
参数指定要删除的字符:它可以是单个字符,也可以是向量或字符集。
例子
julia> a = rpad("March", 20)
"March "
julia> rstrip(a)
"March"
相关用法
- Julia rsplit用法及代码示例
- Julia rem用法及代码示例
- Julia rpad用法及代码示例
- Julia reduce方法用法及代码示例
- Julia redirect_stdio用法及代码示例
- Julia readchomp用法及代码示例
- Julia readuntil用法及代码示例
- Julia replace!用法及代码示例
- Julia real方法用法及代码示例
- Julia rationalize用法及代码示例
- Julia readlines用法及代码示例
- Julia replace()用法及代码示例
- Julia retry用法及代码示例
- Julia read用法及代码示例
- Julia reverseind用法及代码示例
- Julia rot180用法及代码示例
- Julia reim用法及代码示例
- Julia rotr90用法及代码示例
- Julia round方法用法及代码示例
- Julia repeat方法用法及代码示例
- Julia readline用法及代码示例
- Julia repeat用法及代码示例
- Julia repr方法用法及代码示例
- Julia reverse!用法及代码示例
- Julia reshape用法及代码示例
注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.rstrip — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。