Get String

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

I am defining the following:

Dim Names As String()

Consider the following:

A = {a, T}

B = {b, T}

C = {c}

Every time I create Names string() I will define it as a value and T
or just a value.

Basically, I need to get the value a, b or c to a string Name.

For example:

for A: Name = a

for C: Name = c

How can I do this?

Thanks,

Miguel
 
You mean you want to get the name of a variable as a string ?

You may want to explain what you are trying to do from the start. Someone
could perhaps suggest a better approach to the problem you are trying to
solve...
 
shapper said:
Hello,

I am defining the following:

Dim Names As String()

Consider the following:

A = {a, T}

B = {b, T}

C = {c}

Every time I create Names string() I will define it as a value and T
or just a value.

Basically, I need to get the value a, b or c to a string Name.

For example:

for A: Name = a

for C: Name = c

How can I do this?

Thanks,

Miguel

Strange, you totally failed to explain what it is that you are trying to
do. I have no idea what it might be, and I am usually able to figure out
what the question means, even when people forget to ask a question at all.

It looks a little bit like you want to put a string in an array and then
get the string from the array, but that is so basic that I find it hard
to believe that this is what you want to do.
 
Back
Top