Is there a way to add a significant number of spaces to a text field, without pressing the space bar 296 times?
For example repeat(" ", 296)
I am creating a file where every record must be the same length and within each record there are fields that are located at specific start/end positions.
I considered using a counter and a forall to create the string, but was hoping there was a simple function like repeat, but can't find one.
Thanks