Re: Use strings in Mathematica, like in C?
- To: mathgroup at smc.vnet.net
- Subject: [mg61373] Re: Use strings in Mathematica, like in C?
- From: "dkr" <dkrjeg at adelphia.net>
- Date: Mon, 17 Oct 2005 02:29:39 -0400 (EDT)
- References: <disllm$mj5$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
changeChar replaces the nth character of str with newChar
In[11]:=
changeChar[str_String,n_Integer,newChar_String]:=
StringReplacePart[str,newChar,{n,n}];
In[12]:=
egString="abcdefg";
changeChar[egString,4,"h"]//InputForm
Out[13]//InputForm=
"abchefg"