Available on all platforms
Represents a constant.
See also:
https://haxe.org/manual/expression-constants.html
CInt(v:String)
Represents an integer literal.
CFloat(f:String)
Represents a float literal.
CString(s:String, kind:StringLiteralKind)
Represents a string literal.
CIdent(s:String)
Represents an identifier.
CRegexp(r:String, opt:String)
Represents a regular expression literal.
Example: ~/haxe/i The first argument haxe is a string with regular expression pattern. The second argument i is a string with regular expression flags.
~/haxe/i
https://haxe.org/manual/std-regex.html