sdrop (2) --- drop characters from a string APL-style 03/23/80 _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n integer function sdrop (from, to, length) character from (ARB), to (ARB) integer length Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Sdrop' copies all but 'length' characters from the 'from' string into the 'to' string and returns as its result the number of characters copied. If 'length' is positive, the omitted characters are relative to the beginning of the 'from' string; if it is negative, they are relative to the end of the string. _A_r_g_u_m_e_n_t_s _M_o_d_i_f_i_e_d to _C_a_l_l_s ctoc, length, scopy _S_e_e _A_l_s_o stake (2), index (2), substr (2), drop (1) sdrop (2) - 1 - sdrop (2)