1.4.3. String::strip

Start felix section to test/stdlib/slrt-1.03.03-0.flx[1 /1 ]
     1: #line 496 "./lpsrc/flx_stdlib_regress.pak"
     2: //Check strings
     3: #import <flx.flxh>
     4: print$ lstrip "  a b c  "; endl;
     5: print$ lstrip "a b c  "; endl;
End felix section to test/stdlib/slrt-1.03.03-0.flx[1]
Start data section to test/stdlib/slrt-1.03.03-0.expect[1 /1 ]
     1: a b c
     2: a b c
End data section to test/stdlib/slrt-1.03.03-0.expect[1]
Start felix section to test/stdlib/slrt-1.03.03-1.flx[1 /1 ]
     1: #line 510 "./lpsrc/flx_stdlib_regress.pak"
     2: //Check strings
     3: #import <flx.flxh>
     4: print$ rstrip "  a b c  "; endl;
     5: print$ rstrip "  a b c"; endl;
End felix section to test/stdlib/slrt-1.03.03-1.flx[1]
Start data section to test/stdlib/slrt-1.03.03-1.expect[1 /1 ]
     1:   a b c
     2:   a b c
End data section to test/stdlib/slrt-1.03.03-1.expect[1]
Start felix section to test/stdlib/slrt-1.03.03-2.flx[1 /1 ]
     1: #line 524 "./lpsrc/flx_stdlib_regress.pak"
     2: //Check strings
     3: #import <flx.flxh>
     4: print$ strip "  a b c  "; endl;
     5: print$ strip "a b c"; endl;
End felix section to test/stdlib/slrt-1.03.03-2.flx[1]
Start data section to test/stdlib/slrt-1.03.03-2.expect[1 /1 ]
     1: a b c
     2: a b c
End data section to test/stdlib/slrt-1.03.03-2.expect[1]