11-12-2024, 01:26 AM
I'm normally so lazy, that when it comes to something like this, I tend to just paste the evil code with quotes into a blank IDE window and then use Fine and Replace on it.
Find: "
Replace With: ''
Do all....
(and if that isn't obvious at first glance, that's a quote relaced with two colons " = ' ' )
So "Steve is Awesome" would convert to become ''Steve is Awesome''.
Since I often write my own word wrap routines like you do @Pete , I'll often just toss a simple conversion routine in there where those double colons translate to quotes, before printing/wrapping.
Find: "
Replace With: ''
Do all....
(and if that isn't obvious at first glance, that's a quote relaced with two colons " = ' ' )
So "Steve is Awesome" would convert to become ''Steve is Awesome''.
Since I often write my own word wrap routines like you do @Pete , I'll often just toss a simple conversion routine in there where those double colons translate to quotes, before printing/wrapping.