Vertical Bar
Posted: Fri Apr 18, 2025 6:53 pm
I have a text file that contains "cheese|cheese" among its contents.
And I wonder why THIS throws a 'bluey':
And I wonder why THIS throws a 'bluey':
Code: Select all
put 1 into VOXX
repeat until VOXX > 500
if word VOXX of fld "GUFF" contains "|" then
put word VOXX of fld "GUFF"
end if
add 1 to VOXX
end repeat