Posts: 3
Threads: 1
Joined: Jan 2011
Reputation:
0
01-13-2011, 09:31 PM
Hi guys,
could you please help me.
I have a string which contain special characters and I need to separate them.
ex:
testString = @#'$"%*
I need to store each char separatly, and I don't know how to store " and ' chars.
Please help me.
Posts: 189
Threads: 0
Joined: Jul 2009
Reputation:
1
01-14-2011, 10:31 AM
Hi Nikmar,
Use: Len, Left and Right functions to achieve this.
Posts: 3
Threads: 1
Joined: Jan 2011
Reputation:
0
01-14-2011, 11:37 AM
(This post was last modified: 01-14-2011, 12:21 PM by nikmar.)
Yes of course, I forget about this.
But
I need something like this, I have a variable ch=@#$&"#')(^&* it's a pin stored in DB and I need to decrypt it
c = left(ch,1)
if c == "and here I need chars " and ' " then....
Many thanks.
Posts: 3
Threads: 1
Joined: Jan 2011
Reputation:
0
01-14-2011, 02:17 PM
(This post was last modified: 01-14-2011, 02:17 PM by nikmar.)
I found.
if c = """" then...
Many thanks for respons.
Best Regards.