Do we have split or get option in sequence

Do we have split or get option in sequence
like

sequence stringValues := [a, b, c, d, e];
stringValues .split(“.”) or stringValues.get[0]

https://documentation.softwareag.com/pam/10.15.0/en/webhelp/ApamaDoc/sequence.html

…documents the sequence type.

There doesn’t look to be what you want.

Can you explain more about which direction you are looking for please?
We have

  1. string.split()
    For example: sequence items := “,”.split(“a,b,c”);
  2. string.tokenize()
    Similar but slightly different behaviour.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.