When i send the command "AT+CUSD=1,"*200#",15" i get the response:
OK
+CUSD: 0,"Crdit :1.33DA au 21/05/20.Credit offert :0DA",15
Is there a function or another AT command to get just
Crdit :1.33DA au 21/05/20.Credit offert :0DA
which is the the answer i want ?
Modem response is string-package divided by commas.
You can:
- assign this string to
TStringList.DelimitedText
to get collection of individual substrings- identify package by 0-th item - here
'CUSD'
- get 1-th item as
'Crdit...'
Example with
Memo.Lines
(of typeTStrings
):