string()是 julia 中的內置函數,用於將指定的整數轉換為給定基數的字符串。
用法:
string(n::Integer; base::Integer, pad::Integer)
參數:
- n::Integer:指定的整數。
- base::Integer:將在其中執行轉換的指定基數。
- pad::Integer:它是返回的字符串中存在的字符數。
返回值:它以給定的基數返回轉換後的字符串。
範例1:
Python
# Julia program to illustrate
# the use of String string() method
# Conversion of integer to a string
# in the given base
Println(string(10, base = 5, pad = 5))
Println(string(10, base = 5, pad = 3))
Println(string(5, base = 10, pad = 2))
Println(string(8, base = 9, pad = 4))
輸出:
:
範例2:
Python
# Julia program to illustrate
# the use of String string() method
# Creation of a single string using
# all the arguments
Println(string("A", 5, true))
Println(string("A", 10, false))
Println(string("B", 6, true))
Println(string("C", 12, false))
輸出:
相關用法
- Julia sizeof()用法及代碼示例
- Julia reverse()用法及代碼示例
- Julia findlast()用法及代碼示例
- Julia length()用法及代碼示例
- Julia repeat()用法及代碼示例
- Julia SubString()用法及代碼示例
- Julia findfirst()用法及代碼示例
- Julia replace()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Convert an Integer to a String in Julia – string() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。