1 function str_join
(array
, from
, to
, sep_given
, str
, sep
, i
) {
4 for (i=from
; i
<=to
; i
++) {
11 function str_tail
(head
, full
, tail
, len_tail
, len_head
, len_full
) {
12 len_full =
length(full
)
13 len_head =
length(head
)
14 len_tail = len_full
- len_head
15 tail =
substr(full
, len_head
+ 1, len_tail
)
19 function str_strip
(s
) {
This page took 0.076819 seconds and 4 git commands to generate.