PATH: //usr/share/perl5
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 AnyDBM_File.pm
↓
X
📁 Attribute/
X
📄 AutoLoader.pm
↓
X
📄 AutoSplit.pm
↓
X
📁 B/
X
📄 Benchmark.pm
↓
X
📄 CORE.pod
↓
X
📁 CPAN/
X
📁 Class/
X
📁 Compress/
X
📁 Config/
X
📄 DB.pm
↓
X
📁 DBM_Filter/
X
📄 DBM_Filter.pm
↓
X
📁 Devel/
X
📄 DirHandle.pm
↓
X
📄 Dumpvalue.pm
↓
X
📄 English.pm
↓
X
📁 ExtUtils/
X
📁 File/
X
📄 FileCache.pm
↓
X
📄 FileHandle.pm
↓
X
📄 FindBin.pm
↓
X
📁 Getopt/
X
📁 I18N/
X
📁 IO/
X
📁 IPC/
X
📄 Internals.pod
↓
X
📁 Locale/
X
📁 Math/
X
📁 Memoize/
X
📄 Memoize.pm
↓
X
📁 Module/
X
📄 NEXT.pm
↓
X
📁 Net/
X
📄 PerlIO.pm
↓
X
📁 Pod/
X
📄 Safe.pm
↓
X
📁 Search/
X
📄 SelectSaver.pm
↓
X
📄 SelfLoader.pm
↓
X
📄 Symbol.pm
↓
X
📁 Term/
X
📄 Test.pm
↓
X
📁 Text/
X
📁 Thread/
X
📄 Thread.pm
↓
X
📁 Tie/
X
📁 Time/
X
📄 UNIVERSAL.pm
↓
X
📁 URI/
X
📄 URI.pm
↓
X
📁 Unicode/
X
📁 User/
X
📄 XSLoader.pm
↓
X
📄 _charnames.pm
↓
X
📄 autouse.pm
↓
X
📄 base.pm
↓
X
📄 blib.pm
↓
X
📄 bytes.pm
↓
X
📄 bytes_heavy.pl
↓
X
📄 charnames.pm
↓
X
📄 deprecate.pm
↓
X
📄 diagnostics.pm
↓
X
📄 dumpvar.pl
↓
X
📁 encoding/
X
📄 feature.pm
↓
X
📄 fields.pm
↓
X
📄 filetest.pm
↓
X
📄 if.pm
↓
X
📄 integer.pm
↓
X
📄 less.pm
↓
X
📄 locale.pm
↓
X
📄 meta_notation.pm
↓
X
📄 open.pm
↓
X
📁 overload/
X
📄 overload.pm
↓
X
📄 overloading.pm
↓
X
📄 perl5db.pl
↓
X
📁 pod/
X
📄 sigtrap.pm
↓
X
📄 sort.pm
↓
X
📄 strict.pm
↓
X
📄 subs.pm
↓
X
📁 unicore/
X
📄 utf8.pm
↓
X
📄 vars.pm
↓
X
📁 vendor_perl/
X
📄 vmsish.pm
↓
X
📁 warnings/
X
📄 warnings.pm
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: meta_notation.pm
use strict; use warnings; # A tiny private library routine which is a helper to several Perl core # modules, to allow a paradigm to be implemented in a single place. The name, # contents, or even the existence of this file may be changed at any time and # are NOT to be used by anything outside the Perl core. sub _meta_notation ($) { # Returns a copy of the input string with the nonprintable characters # below 0x100 changed into printables. Any ASCII printables or above 0xFF # are unchanged. (XXX Probably above-Latin1 characters should be # converted to \X{...}) # # \0 .. \x1F (which are "\c@" .. "\c_") are changed into ^@, ^A, ^B, ... # ^Z, ^[, ^\, ^], ^^, ^_ # \c? is changed into ^?. # # The above accounts for all the ASCII-range nonprintables. # # On ASCII platforms, the upper-Latin1-range characters are converted to # Meta notation, so that \xC1 becomes 'M-A', \xE2 becomes 'M-b', etc. # This is how it always has worked, so is continued that way for backwards # compatibility. The range \x80 .. \x9F becomes M-^@ .. M-^A, M-^B, ... # M-^Z, M-^[, M-^\, M-^], M-^, M-^_ # # On EBCDIC platforms, the upper-Latin1-range characters are converted # into '\x{...}' Meta notation doesn't make sense on EBCDIC platforms # because the ASCII-range printables are a mixture of upper bit set or # not. [A-Za-Z0-9] all have the upper bit set. The underscore likely # doesn't; and other punctuation may or may not. There's no simple # pattern. my $string = shift; $string =~ s/([\0-\037])/ sprintf("^%c",utf8::unicode_to_native(ord($1)^64))/xeg; $string =~ s/\c?/^?/g; if (ord("A") == 65) { $string =~ s/([\200-\237])/sprintf("M-^%c",(ord($1)&0177)^64)/eg; $string =~ s/([\240-\377])/sprintf("M-%c" ,ord($1)&0177)/eg; } else { no warnings 'experimental::regex_sets'; # Leave alone things above \xff $string =~ s/( (?[ [\x00-\xFF] & [:^print:]])) / sprintf("\\x{%X}", ord($1))/xaeg; } return $string; } 1
SIMPAN PERUBAHAN