makeNstr                package:Hmisc                R Documentation

_c_r_e_a_t_e_s _a _s_t_r_i_n_g _t_h_a_t _i_s _a _r_e_p_e_a_t _o_f _a _s_u_b_s_t_r_i_n_g

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

     Takes a character and creates a string that is the character
     repeated 'len' times.

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

     makeNstr(char, len)

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

    char: character to be repeated 

     len: number of times to repeat 'char'. 

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

     A string that is 'char' repeated 'len' times.

_A_u_t_h_o_r(_s):

     Charles Dupont

_S_e_e _A_l_s_o:

     'paste', 'rep'

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

     makeNstr(" ", 5)

