This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
The SYTOOLS.SPLIT table function was enhanced to add an ESCAPE parameter. This was delivered in fall 2020 with IBM i 7.4 PTF Group level 10 and IBM i 7.3 PTF Group level 22.
IBM will use this request as input to planning but no commitment is made or implied. This request will be updated in the future if IBM implements it.
The code for SPLIT is available on the system, and I recall it was also posted online as it isn't that sophisticated.
Therefore, adding a 3rd parameter (Escape symbol) and then adapting the code to taste is something that could be done today. IBM should still do this, so that everyone can enjoy it, but you could easily add that capablity yourself.
agreed this function is very useful, but a few small tweaks to it would make it even better.
just yesterday i wanted to use it to split a string at a specific length but it doesn't currently support that. something like this would be useful: https://www.php.net/manual/en/function.str-split.php
for your case instead of adding the escape character, can you replace the comma with another character (like ^), then run split, then put ^ back to a ,. I know it's a workaround, but might help for what you're trying to accomplish.