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


Julia first()用法及代码示例


这个first()是 julia 中的一个内置函数,用于返回由指定字符串的前 n 个字符组成的字符串,其中 n 将作为参数传递。

用法:
first(s::AbstractString, n::Integer)

参数:

  • s::抽象字符串:指定的字符串。
  • n::整数:指定的整数值。

返回值:它返回一个由指定字符串的前 n 个字符组成的字符串,其中 n 将作为参数传递。

范例1:




# Julia program to illustrate 
# the use of String first() method
  
# Getting a string consisting of the first
# n characters of the specified string
println(first("GeeksforGeeks", 0))
println(first("GeeksforGeeks", 5))
println(first("GeeksforGeeks", 8))
println(first("GeeksforGeeks", 10))

输出:

范例2:


# Julia program to illustrate 
# the use of String first() method
  
# Getting a string consisting of the first
# n characters of the specified string
println(first("1 + 2+3 + 4", 0))
println(first("2-4-6-8", 4))
println(first("1 * 3*5 * 7", 6))

输出:

相关用法


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