當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。