G
Guest
I have a comment field called: Item.userproperties("CommentBar").valu
What I would like to do is check every 140 characters to make sure it's a blank and if so insert a chr(13) and do this till the end of the string
Does anyone have any sample code on how to do this?
Example: "this is a test OF a test for a test to see if this works.
it scans the string 140 characters ( i know it's not 140 in the example) and comes to the word 'of'
the F is 140 so if it's not blank moves up 1 more character till it's blank and then puts chr(13) in
Output: this is a test of chr(13) a test to see if this chr(13) works
What I would like to do is check every 140 characters to make sure it's a blank and if so insert a chr(13) and do this till the end of the string
Does anyone have any sample code on how to do this?
Example: "this is a test OF a test for a test to see if this works.
it scans the string 140 characters ( i know it's not 140 in the example) and comes to the word 'of'
the F is 140 so if it's not blank moves up 1 more character till it's blank and then puts chr(13) in
Output: this is a test of chr(13) a test to see if this chr(13) works