Hello
sorex
Yes, I know that, but the problem is that the database does not receive the code and stop at the first one
Tried to add text directly in the database and receive an error message
Sent a message to the host to ask for help and wait for response
But I wrote this code a temporary solution
It works well and replaces the codes with *
Dim list_smiles As List
list_smiles.Initialize
Dim s_code As String
s_code = E_TXT.Text
list_smiles = File.ReadList(File.DirAssets,"smiles.txt")
For i = 0 To list_smiles.Size-1
s_code = s_code.Replace(list_smiles.Get(i),"*")
Next
E_TXT2.Text = s_code
The text file in the attachments for people interested CODE
Thanks All