2009-09-17 10:54 PM
2009-09-17 11:20 PM
FOR i = 1 TO STRLEN(string_parameter) char = SUBSTR(string_parameter, i, 1) IF char = " " THEN ! find space character ! do something ENDIF NEXT iThe details of course depend on what you want to do. This is the method I used before the multi-line text functions were introduced. I still use it in simple cases or where I need special control over parsing the text.
2009-09-18 02:25 AM
lec1212 wrote:If memory serves me well it was ML who suggested to us \n as shown in attached
/.......Is it possible to get a "return" to work so I can have another
line of text below what I've shown in the attached script?
2009-09-18 06:51 AM
2009-09-18 07:17 AM
2009-09-18 07:23 AM
2009-09-18 08:12 AM
2009-10-19 08:21 PM
2009-10-19 09:36 PM