用法:
eachmatch(r::Regex, s::AbstractString; overlap::Bool=false)
在s
中搜索正则表达式r
的所有匹配项,并返回匹配项的迭代器。如果 overlap
是 true
,则允许匹配序列与原始字符串中的索引重叠,否则它们必须来自不同的字符范围。
例子
julia> rx = r"a.a"
r"a.a"
julia> m = eachmatch(rx, "a1a2a3a")
Base.RegexMatchIterator(r"a.a", "a1a2a3a", false)
julia> collect(m)
2-element Vector{RegexMatch}:
RegexMatch("a1a")
RegexMatch("a3a")
julia> collect(eachmatch(rx, "a1a2a3a", overlap = true))
3-element Vector{RegexMatch}:
RegexMatch("a1a")
RegexMatch("a2a")
RegexMatch("a3a")
相关用法
- Julia eachindex()用法及代码示例
- Julia eachline用法及代码示例
- Julia eachindex用法及代码示例
- Julia exp2用法及代码示例
- Julia escape_string用法及代码示例
- Julia extrema用法及代码示例
- Julia empty!用法及代码示例
- Julia exp方法用法及代码示例
- Julia end用法及代码示例
- Julia empty用法及代码示例
- Julia endswith用法及代码示例
- Julia expm1用法及代码示例
- Julia eps方法用法及代码示例
- Julia eltype用法及代码示例
- Julia exp10用法及代码示例
- Julia endswith()用法及代码示例
- Julia splice!用法及代码示例
- Julia @cfunction用法及代码示例
- Julia LibGit2.count用法及代码示例
- Julia LinearAlgebra.BLAS.dot用法及代码示例
- Julia break用法及代码示例
- Julia sizeof()用法及代码示例
- Julia :<=用法及代码示例
- Julia zero()用法及代码示例
- Julia rem用法及代码示例
注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.eachmatch — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。