Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
js
/
tests
/
testdata
/
string_methods.v
3
lines
·
3
sloc
·
136 bytes
·
d3489d4246d883b1812cd96199793c5dd80cb631
Raw
1
println(
'd Hello V developer'
.trim_left(
' d'
))
2
println(
' Hello V d'
.trim_right(
' d'
))
3
println(
'WorldHello V'
.trim_string_left(
'World'
))
4