time-to-botec

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

repl.txt (522B)


      1 
      2 {{alias}}( str )
      3     Tests whether a string contains only alphanumeric characters.
      4 
      5     Parameters
      6     ----------
      7     str: string
      8         Input string.
      9 
     10     Returns
     11     -------
     12     bool: boolean
     13         Boolean indicating whether a string contains only alphanumeric
     14         characters.
     15 
     16     Examples
     17     --------
     18     > var bool = {{alias}}( 'abc0123456789' )
     19     true
     20     > bool = {{alias}}( 'abcdef' )
     21     true
     22     > bool = {{alias}}( '0xff' )
     23     true
     24     > bool = {{alias}}( '' )
     25     false
     26 
     27     See Also
     28     --------
     29