STRING$ Function Programming Examples Example 1 The following example uses STRING$ to create part of a report heading: Dash$ = STRING$(10,45) PRINT Dash$;"MONTHLY REPORT";Dash$ Sample Output ----------MONTHLY REPORT---------- Example 2 The following program uses STRING$ to generate a bar graph: PRINT TAB(7);"Daily Mean Temperature in Seattle" : PRINT 'Get data for each month and graph. FOR Month = 1 TO 12 STEP 2 READ Month$, Temp 'Print Temp-35 stars. PRINT Month$;" +"; STRING$(Temp-35,"*") PRINT " |" NEXT Month 'Print horizontal line. PRINT " +"; FOR X = 1 TO 7 PRINT "----+"; NEXT X PRINT 'Print temperature labels. FOR X = 4 TO 39 STEP 5 PRINT TAB(X); X+31; NEXT X PRINT DATA Jan, 40, Mar, 46, May, 56 DATA Jul, 66, Sep, 61, Nov, 46 Sample Output Daily Mean Temperature in Seattle Jan +***** | Mar +*********** | May +********************* | Jul +******************************* | Sep +************************** | Nov +*********** | +----+----+----+----+----+----+----+ 35 40 45 50 55 60 65 70