v2 / vlib / v / gen / js / tests / testdata / string_methods.v
3 lines · 3 sloc · 136 bytes · d3489d4246d883b1812cd96199793c5dd80cb631
Raw
1println('d Hello V developer'.trim_left(' d'))
2println(' Hello V d'.trim_right(' d'))
3println('WorldHello V'.trim_string_left('World'))
4