class
   Crystal::Macros::StringLiteral
  
  
  Overview
A string literal.
Defined in:
compiler/crystal/macros.crInstance Method Summary
- 
        #+(other : StringLiteral | CharLiteral) : StringLiteral
        
          
Similar to
String#+. - 
        #<(other : StringLiteral | MacroId) : BoolLiteral
        
          
Similar to
String#< - 
        #=~(range : RegexLiteral) : BoolLiteral
        
          
Similar to
String#=~. - 
        #>(other : StringLiteral | MacroId) : BoolLiteral
        
          
Similar to
String#> - 
        #[](range : RangeLiteral) : StringLiteral
        
          
Similar to
String#[]. - 
        #camelcase(*, lower : BoolLiteral = false) : StringLiteral
        
          
Similar to
String#camelcase. - 
        #capitalize : StringLiteral
        
          
Similar to
String#capitalize. - 
        #chars : ArrayLiteral(CharLiteral)
        
          
Similar to
String#chars. - 
        #chomp : StringLiteral
        
          
Similar to
String#chomp. - 
        #count(other : CharLiteral) : NumberLiteral
        
          
Similar to
String#count. - 
        #downcase : StringLiteral
        
          
Similar to
String#downcase. - 
        #empty? : BoolLiteral
        
          
Similar to
String#empty?. - 
        #ends_with?(other : StringLiteral | CharLiteral) : BoolLiteral
        
          
Similar to
String#ends_with?. - 
        #gsub(regex : RegexLiteral, replacement : StringLiteral) : StringLiteral
        
          
Similar to
String#gsub. - 
        #id : MacroId
        
          
Returns a
MacroIdfor this string's contents. - 
        #includes?(search : StringLiteral | CharLiteral) : BoolLiteral
        
          
Similar to
String#includes?. - 
        #lines : ArrayLiteral(StringLiteral)
        
          
Similar to
String#lines. - 
        #scan(regex : RegexLiteral) : ArrayLiteral(HashLiteral(NumberLiteral | StringLiteral), StringLiteral | NilLiteral)
        
          
Returns an array of capture hashes for each match of regex in this string.
 - 
        #size : NumberLiteral
        
          
Similar to
String#size. - 
        #split(node : ASTNode) : ArrayLiteral(StringLiteral)
        
          
Similar to
String#split. - 
        #split : ArrayLiteral(StringLiteral)
        
          
Similar to
String#split. - 
        #starts_with?(other : StringLiteral | CharLiteral) : BoolLiteral
        
          
Similar to
String#starts_with?. - 
        #strip : StringLiteral
        
          
Similar to
String#strip. - 
        #titleize : StringLiteral
        
          
Similar to
String#titleize. - 
        #to_i(base = 10)
        
          
Similar to
String#to_i. - 
        #to_utf16 : ASTNode
        
          
Returns an expression that evaluates to a slice literal containing the UTF-16 code units of this string, plus an extra trailing null character.
EXPERIMENTAL Slice literals are still under development. Join the discussion at #2886.
 - 
        #tr(from : StringLiteral, to : StringLiteral) : StringLiteral
        
          
Similar to
String#tr. - 
        #underscore : StringLiteral
        
          
Similar to
String#underscore. - 
        #upcase : StringLiteral
        
          
Similar to
String#upcase. 
Instance methods inherited from class Crystal::Macros::ASTNode
  
  
    
      !=(other : ASTNode) : BoolLiteral
    !=, 
    
  
    
      ==(other : ASTNode) : BoolLiteral
    ==, 
    
  
    
      class_name : StringLiteral
    class_name, 
    
  
    
      column_number : StringLiteral | NilLiteral
    column_number, 
    
  
    
      doc : StringLiteral
    doc, 
    
  
    
      doc_comment : MacroId
    doc_comment, 
    
  
    
      end_column_number : StringLiteral | NilLiteral
    end_column_number, 
    
  
    
      end_line_number : StringLiteral | NilLiteral
    end_line_number, 
    
  
    
      filename : StringLiteral | NilLiteral
    filename, 
    
  
    
      id : MacroId
    id, 
    
  
    
      is_a?(type : TypeNode) : BoolLiteral
    is_a?, 
    
  
    
      line_number : StringLiteral | NilLiteral
    line_number, 
    
  
    
      nil? : BoolLiteral
    nil?, 
    
  
    
      raise(message) : NoReturn
    raise, 
    
  
    
      stringify : StringLiteral
    stringify, 
    
  
    
      symbolize : SymbolLiteral
    symbolize, 
    
  
    
      warning(message : StringLiteral) : NilLiteral
    warning
    
  
      
      
      
    
  Instance Method Detail
Similar to String#camelcase.
Similar to String#ends_with?.
Similar to String#gsub.
Similar to String#includes?.
Returns an array of capture hashes for each match of regex in this string.
Capture hashes have the same form as Regex::MatchData#to_h.
Similar to String#starts_with?.
Returns an expression that evaluates to a slice literal containing the
UTF-16 code units of this string, plus an extra trailing null character.
This null character is not part of the slice, but ensures that calling
#to_unsafe always results in a properly null-terminated C string.
(::Slice(::UInt16).literal(97_u16, 98_u16, 99_u16, 55357_u16, 56834_u16, 0_u16))[0, 5] # => ::Slice(::UInt16).literal(97, 98, 99, 55357, 56834, 0)[0, 5]
WARNING The return value is not necessarily a literal node.
EXPERIMENTAL Slice literals are still under development. Join the discussion at #2886.
Similar to String#tr.