本文简要介绍ruby语言中 MatchData.match_length
的用法。
用法
match_length(n) → array
返回与参数对应的捕获子字符串的长度。 n
可以是引用命名捕获的字符串或符号。
m = /(.)(.)(\d+)(\d)(\w)?/.match("THX1138.")
m.match_length(0) #=> 6
m.match_length(4) #=> 1
m.match_length(5) #=> nil
m = /(?<foo>.)(.)(?<bar>.+)/.match("hoge")
m.match_length(:foo) #=> 1
m.match_length(:bar) #=> 2
相关用法
- Ruby MatchData.match用法及代码示例
- Ruby MatchData.mtch[i]用法及代码示例
- Ruby MatchData.pre_match用法及代码示例
- Ruby MatchData.named_captures用法及代码示例
- Ruby MatchData.length用法及代码示例
- Ruby MatchData.post_match用法及代码示例
- Ruby MatchData.captures用法及代码示例
- Ruby MatchData.offset用法及代码示例
- Ruby MatchData.string用法及代码示例
- Ruby MatchData.names用法及代码示例
- Ruby MatchData.end用法及代码示例
- Ruby MatchData.begin用法及代码示例
- Ruby MatchData.inspect用法及代码示例
- Ruby MatchData.values_at用法及代码示例
- Ruby MatchData.size用法及代码示例
- Ruby MatchData.regexp用法及代码示例
- Ruby MatchData.to_s用法及代码示例
- Ruby MatchData.to_a用法及代码示例
- Ruby MatchData类用法及代码示例
- Ruby Matrix lup()用法及代码示例
- Ruby Matrix unitary?()用法及代码示例
- Ruby Matrix symmetric?()用法及代码示例
- Ruby Matrix t()用法及代码示例
- Ruby Matrix identity()用法及代码示例
- Ruby Matrix hash()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 MatchData.match_length。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。