jlclancy
Technical User
- May 22, 2009
- 13
I am using this code to try and delete everything from the beginning bracket [ to the first semicolon. The memo field starts with the bracket and has several ';' however I only need to delete to the first semicolon. For example, the first pass shows a semicolon at 34; when I execute this code I get the last 34 characters, not the entire lenght except the first 34 characters...
stringVar str;
Str := {Police.Narrative};
Right(Str, InStr(Str, ";") -1))
Any suggestions?
thanks!
stringVar str;
Str := {Police.Narrative};
Right(Str, InStr(Str, ";") -1))
Any suggestions?
thanks!