Re: Regular expressions???

  •  08-23-2005, 1:52 PM

    Re: Regular expressions???

    Hi Doug,
     
    i don't know if this will work for you, but when i need to filter ish
    before i before it goes to my DB, i do a replace command on the
    string Variable.
     
    Lets say you didn't want the word "Hello" entered into your DB,
    you wanted the word "Hi" instead.
     
    Dim X as string
     
    X = CuteEditor1.text
    X = X.Replace("Hello", "Hi")
     
    And from there, just send the string X to be saved in your DB.
     
     
    Hope that Helps,
     
    Dave

     
     
View Complete Thread