Difference between revisions of "%sscan"
From Zenitel Wiki
Line 9: | Line 9: | ||
Example: Check if EDI text has the string “connect” | Example: Check if EDI text has the string “connect” | ||
− | If | + | If %sscan(%edi,connect) |
... | ... | ||
Endif | Endif |
Revision as of 14:26, 20 September 2023
Event_Handler macro - Extract substring by text scan
Format: %sscan(string, search-string)
- Scan for search-string, extract rest of string including first match
- Returns empty string if search-string not found
- Useful for parsing External_Data_Input.
Example: Check if EDI text has the string “connect”
If %sscan(%edi,connect) ... Endif
Example: %sscan(ABCDEFGHI,DEF) will return DEFGHI
Back to Event_Handler#List_of_macros.