$ARG
  • References/Perl/Perl/Special Variables

$ARG

2025-01-10 15:47:30
$<digits> ($1, $2, ...)
  • References/Perl/Perl/Special Variables

$<digits> ($1, $2, ...) Contains the subpattern from the corresponding set of capturing parentheses from the last successful pattern

2025-01-10 15:47:30
$<
  • References/Perl/Perl/Special Variables

$< The real uid of this process. You can change both the real uid and the effective uid at the same time by using

2025-01-10 15:47:30
$`
  • References/Perl/Perl/Special Variables

$` The string preceding whatever was matched by the last successful pattern match, not counting any matches hidden within a BLOCK or

2025-01-10 15:47:30
${^UTF8CACHE}
  • References/Perl/Perl/Special Variables

${^UTF8CACHE} This variable controls the state of the internal UTF-8 offset caching code. 1 for on (the default), 0 for off, -1 to debug the

2025-01-10 15:47:30
$^E
  • References/Perl/Perl/Special Variables

$^E Error information specific to the current operating system. At the moment, this differs from $!

2025-01-10 15:47:30
$*
  • References/Perl/Perl/Special Variables

$* $* was a variable that you could use to enable multiline matching. After a deprecation

2025-01-10 15:47:30
$~
  • References/Perl/Perl/Special Variables

$~ The name of the current report format for the currently selected output channel. The default format name is the same as the filehandle name

2025-01-10 15:47:30
$.
  • References/Perl/Perl/Special Variables

$. Current line number for the last filehandle accessed. Each filehandle in Perl counts the number of lines

2025-01-10 15:47:30
@LAST_MATCH_START
  • References/Perl/Perl/Special Variables

@LAST_MATCH_START

2025-01-10 15:47:30