Hello!
I am totally new at Outsystems, I am trying to understand some basic functions, at this moment I am trying to understand how String_Split works, can anyone tell me it briefly?
Thank You!
Hello Diogo!You pass string and a separator parameters, and it returns a List of strings.You can find more information in the documentation:https://success.outsystems.com/Documentation/10/Reference/OutSystems_APIs/Text_API#String_SplitHope it helps!Regards,Tiago Somensi
Hello, Diogo.
The String_Split is a function to separate the string in a record list
you pass to parameter the 'string' and the 'delimiters'
for example: you have a string " leonardo@outsystems " Then you pass as delimiters " @ ", the result will be a record list with two records
leonardo
outsystems
You can know more in this link: https://success.outsystems.com/Documentation/10/Reference/OutSystems_APIs/Text_API#String_Split
Regards,
Hi Diogo,
You find a description of it in the Text API.
Splits a string into individual elements delimited by any of the characters in Delimiters.
Inputs
Outputs
Hope this helps,
Best Regards,
Karl Bernardo
Thank´s everyone!
Diogo