trim                package:genArise                R Documentation

_T_r_i_m

_D_e_s_c_r_i_p_t_i_o_n:

     Extract white spaces at the begining or end of a word.

_U_s_a_g_e:

     trim(word)

_A_r_g_u_m_e_n_t_s:

    word: A string of characters posibly with white spaces at the
          beging or end of the string.  

_V_a_l_u_e:

     Returns a string of characters, with leading and trailing
     whitespace omitted.

_E_x_a_m_p_l_e_s:

     trim("        This is a String            ")
     ## return [1] "This is a String"

