当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia SubString()用法及代码示例


这个SubString()是 julia 中的内置函数,用于返回范围 i:j 或 r 内的指定父字符串 s 的一部分,其中 i、j 和 r 作为参数给出。

用法:
SubString(string::AbstractString, i::Integer, j::Integer)
or
SubString(string::AbstractString, r::UnitRange)

参数:

  • string:指定的父字符串
  • i:指定起始索引
  • j:指定的最后一个索引
  • r:指定单位范围

返回值:它返回 i:j 或 r 范围内的指定父字符串 s 的一部分,其中 i、j 和 r 作为参数给出。

范例1:




# Julia program to illustrate 
# the use of String SubString() method
  
# Finding a part of the parent string
# "Geeks" from starting index 1
# to ending index 3
println(SubString("Geeks", 1, 3))
  
# Finding a part of the parent string
# "GeeksforGeeks" from starting index 5
# to ending index 10
println(SubString("GeeksforGeeks", 5, 10))
  
# Finding a part of the parent string
# "Geeks" with unitrange 2
println(SubString("Geeks", 2))
  
# Finding a part of the parent string
# "GeeksforGeeks" with unit range 6
println(SubString("GeeksforGeeks", 6))

输出:

Gee
sforGe
eeks
forGeeks

范例2:


# Julia program to illustrate 
# the use of String SubString() method
   
# Finding a part of the parent string
# "12345" from starting index 1
# to ending index 3
println(SubString("12345", 1, 3))
   
# Finding a part of the parent string
# "123456789" from starting index 5
# to ending index 8
println(SubString("123456789", 5, 8))
   
# Finding a part of the parent string
# "2468" with unitrange 2
println(SubString("2468", 2))

输出:

123
5678
468



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get a substring of specified length from a string in Julia – SubString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。