You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When writing systems parsing data (for instance, from CSV), it can be a bit tedious to have parsing, taking a lot of nodes for something that could probably be combined in a single one.
Describe the solution you'd like
Add a String Split ProtoFlux node that would act like the Python .split by returning a collection of the split string.
Is your feature request related to a problem? Please describe.
When writing systems parsing data (for instance, from CSV), it can be a bit tedious to have parsing, taking a lot of nodes for something that could probably be combined in a single one.
Describe the solution you'd like
Add a String Split ProtoFlux node that would act like the Python
.split
by returning a collection of the split string.For instance:
Would print out:
This would remove some complexity in ProtoFlux systems, though would have some pre-requisites (see additional context).
Describe alternatives you've considered
Use the current method combining
Substring
andIndexOfString
. Tho a bit more complex than a single node would be, it works.Additional Context
Would require #572 to be implemented first.
Requesters
j4 | j4.lc (Discord)
The text was updated successfully, but these errors were encountered: