I'm just wondering if there is a way, in ColdFusion, to loop over an array of text and then loop over the text line by line ?
<cfloop file= "#ExpandPath('/file-path-here')#" index="theLine">
</cfloop>
The cfloop
above loops through a file. However, I'm hoping to loop over an existing array that contains a lot of text. Then loop over each line of content. Is this possible with CF ?