time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (618B)


      1 
      2 {{alias}}( str )
      3     Expands all contractions to their formal equivalents.
      4 
      5     Parameters
      6     ----------
      7     str: string
      8         Input string.
      9 
     10     Returns
     11     -------
     12     out: string
     13         String with expanded contractions.
     14 
     15     Examples
     16     --------
     17     > var str = 'I won\'t be able to get y\'all out of this one.';
     18     > var out = {{alias}}( str )
     19     'I will not be able to get you all out of this one.'
     20 
     21     > str = 'It oughtn\'t to be my fault, because, you know, I didn\'t know';
     22     > out = {{alias}}( str )
     23     'It ought not to be my fault, because, you know, I did not know'
     24 
     25     See Also
     26     --------
     27