I have a text field that contains anywhere from 0 to ~1,200 characters. I need to break this up into fields containing no more than 80 characters, but I don't want to split up words when I do this. So if the 80th character comes in the middle of the word "cool" then I need to include the text " cool" in the next field.
Can anyone think of a good way to do this? I can easily split of the field into 80-character fields, but my problem is the word splitting. Thanks in advance for any help you can provide.
Can anyone think of a good way to do this? I can easily split of the field into 80-character fields, but my problem is the word splitting. Thanks in advance for any help you can provide.