[CMS-PIPELINES] split at a column

2023-03-17 Thread Glenn Knickerbocker
I had records to split at column 80 and I knew they weren't longer than 160, so DEBLOCK FIXED 80 did the job. What if the right part might be longer than the left? CHOP|GATHER|LOCATE seemed like overkill. I realized SPLIT would do it, given two tiny tricks: * Split once at a number of columns a

Re: [CMS-PIPELINES] split at a column

2023-03-17 Thread Rob van der Heij
On Fri, 17 Mar 2023 at 16:51, Glenn Knickerbocker wrote: > ... | split -80 before 00-ff 1 | ... > So you want to split 80 from the right? Is that .. | x: if chop -80 | x: | ... ?