Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[COLOR=blue]lcstring = [1234^56789^9876]
lcstring = SUBSTR(lcstring,AT([^],lcString,1)+ 1,AT([^],lcstring,2) - 1 - AT([^],lcstring,1))
? lcString[/color]
[COLOR=blue]lcstring = [$Electra$Carmine$L$]
lcstring1 = SUBSTR(lcstring,AT([$],lcString,1) + 1,AT([$],lcstring,2) - 1 - AT([$],lcstring,1)) + [,]
? lcstring1[/color]
lcstring = [1234^56789^9876]
lcstring = SUBSTR(lcstring,AT([^],lcString,1)+ 1,AT([^],lcstring,2) - 1 - AT([^],lcstring,1))
? lcString
lcString = "Order From: Dave Smith, An address somewhere, Tel No 01234567890 End"
lcResult = LTRIM(STRTRAN(lcString,"Order From:",""))
lcResult = RTRIM(LEFT(lcResult, RAT("End",lcResult)-1))
?lcResult
lcResult = "Order From: Dave Smith, An address somewhere, Tel No 01234567890 End"
lcResult = LTRIM(STRTRAN(lcResult,"Order From:",""))
lcResult = RTRIM(LEFT(lcResult, RAT("End",lcResult)-1))
?lcResult
STORE EMAILBODY TO lcResult
lcResult = LTRIM(STRTRAN(lcResult,"PACKING SLIP:",""))
lcResult = RTRIM(LEFT(lcResult, RAT("Purchased on:",lcResult)-1))
?lcResult
STORE EMAILBODY TO lcResult
lcResult = STRTRAN(lcResult,"packing slip:","")
lcResult = LTRIM(STRTRAN(lcResult,"PACKING SLIP:",""))
lcResult = RTRIM(LEFT(lcResult, RAT("Purchased on:",lcResult)-1))
?lcResult