How can I convert array into string object
Tech-Archive recommends: Fix windows errors by optimizing your registry
Hi All,
I want to convert array into string. That is, I have one character
array with number of characters like :
arr[0]='0'
arr[1]='5'
arr[2]='/'
arr[3]='1'
arr[4]='2'
arr[5]='/'
arr[6]='2'
arr[7]='0'
arr[8]='0'
arr[9]='5'
Iwant to store these values into string object. So that it become :
String str="05/12/2005";
How can I do that? I tried with
string date=arr.ToString();
But it doesn't work. Please help me.
.
Relevant Pages
- Help in Spanish translation of the description of UDFs
... functions of minimum / maximum values among elements of an array column. ... GETALLWORDS- Inserts the words from a string into a global dimensioned ... WORDTRAN- Searches a character string for occurrences of a first word, ... ARRAYSUM- Returns the sum of all or a specified range of numeric (and/or ... (microsoft.public.fox.helpwanted) - Re: Check for Common character sequence ( I will pay)?
... Do I need to return an array? ... You need to identify character sequences of 3 or more characters that appear ... in more than one string. ... and test each 3-character sequence that results. ... (microsoft.public.dotnet.framework) - Re: Desirable Usage of Fortran Modules
... suppose we want to cast a character array as ... A function that returns a string ... array of double precision numbers: ... (comp.lang.fortran) - Re: Check for Common character sequence ( I will pay)?
... Yes you are returning an array of FoundString objects. ... in more than one string. ... This means that you have to identify sequences 1 character at a time, ... Again, obviously, if the 3-character sequence doesn't match, neither will ... (microsoft.public.dotnet.framework) - Re: character*1(28) and character*28
... One is a character string. ... Note, by the way, that your dmmy argument is an assumed-size array. ... Mostly the compiler does not know how long it ... (comp.lang.fortran) |
|