Help for this page

Select Code to Download


  1. or download this
    $ perl -le'print "abc def" =~ m[(^.{0,100})\s]'
    abc
    
  2. or download this
    m[(^.{0,100})(?!\S)]
    
  3. or download this
    m[(^.{0,100})(\s|$)]