📌  相关文章
📜  在 Julia 中从字符串中删除结束字符——strip()、lstrip() 和 rstrip() 方法

📅  最后修改于: 2022-05-13 01:55:04.665000             🧑  作者: Mango

在 Julia 中从字符串中删除结束字符——strip()、lstrip() 和 rstrip() 方法

strip()是 julia 中的一个内置函数,用于从指定的字符串str中删除前导和尾随字符。这些删除元素由给定字符chars指定。

例子:

# Julia program to illustrate 
# the use of strip() method
   
# Getting a stripped part of the given string.
println(strip("Geeks", ['s']))
println(strip("GFG", ['G']))
println(strip("1 + 2+3 + 4", ['+']))
println(strip("+1 + 2+3 + 4+", ['+']))

输出:

Geek
F
1+2+3+4
1+2+3+4

lstrip()

lstrip()是 julia 中的内置函数,用于从指定的字符串str中删除前导字符。这些删除元素由给定字符chars指定。

例子:

# Julia program to illustrate 
# the use of lstrip() method
   
# Getting a stripped part of the given string.
println(lstrip("Geek", ['G']))
println(lstrip("GFG", ['G']))
println(lstrip("1 + 2+3 + 4+", ['+']))
println(lstrip("+1 + 2+3 + 4", ['+']))

输出:

eek
FG
1+2+3+4+
1+2+3+4

rstrip()

rstrip()是 julia 中的一个内置函数,用于从指定的字符串str中删除尾随字符。这些删除元素由给定字符chars指定。

例子:

# Julia program to illustrate 
# the use of rstrip() method
   
# Getting a stripped part of the given string.
println(rstrip("Geek", ['G']))
println(rstrip("GFG", ['G']))
println(rstrip("1 + 2+3 + 4+", ['+']))
println(rstrip("+1 + 2+3 + 4", ['+']))

输出:

Geek
GF
1+2+3+4
+1+2+3+4