Hello all,
How can I convert a text into a list of text? How to read every single line of a text and turning it into a record of a list.
For example, the text :
a
b
d
convert the text above to a list :
1element : a
2element : b
3element : (empty)
4element : (empty)
5element : d
Thank you guys :')
Hi RavenYou can try this server action
Hey raven ransford,
Use string_split with delimeter as ""
It will give you as expected.
Hi Raven,
As suggested by others you can use string_split with delimeter as "" from Text extension in outsystems as follows:
Hereby, I am attaching the oml for your reference on how to implement the scenario.