Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
ri /
system /
Regexp /
Delete
Unzip
Name
Size
Permission
Date
Action
TimeoutError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
%3d%3d%3d-i.ri
763
B
-rw-r--r--
2026-04-07 17:42
%3d%3d-i.ri
794
B
-rw-r--r--
2026-04-07 17:42
%3d%7e-i.ri
2.11
KB
-rw-r--r--
2026-04-07 17:42
%7e-i.ri
428
B
-rw-r--r--
2026-04-07 17:42
as_json-i.ri
374
B
-rw-r--r--
2026-04-07 17:42
casefold%3f-i.ri
574
B
-rw-r--r--
2026-04-07 17:42
cdesc-Regexp.ri
40.59
KB
-rw-r--r--
2026-04-07 17:42
compile-c.ri
284
B
-rw-r--r--
2026-04-07 17:42
encoding-i.ri
357
B
-rw-r--r--
2026-04-07 17:42
eql%3f-i.ri
836
B
-rw-r--r--
2026-04-07 17:42
escape-c.ri
836
B
-rw-r--r--
2026-04-07 17:42
fixed_encoding%3f-i.ri
1.57
KB
-rw-r--r--
2026-04-07 17:42
hash-i.ri
379
B
-rw-r--r--
2026-04-07 17:42
inspect-i.ri
484
B
-rw-r--r--
2026-04-07 17:42
json_create-c.ri
468
B
-rw-r--r--
2026-04-07 17:42
last_match-c.ri
1.6
KB
-rw-r--r--
2026-04-07 17:42
linear_time%3f-c.ri
1.11
KB
-rw-r--r--
2026-04-07 17:42
match%3f-i.ri
841
B
-rw-r--r--
2026-04-07 17:42
match-i.ri
1.74
KB
-rw-r--r--
2026-04-07 17:42
named_captures-i.ri
931
B
-rw-r--r--
2026-04-07 17:42
names-i.ri
627
B
-rw-r--r--
2026-04-07 17:42
new-c.ri
2.4
KB
-rw-r--r--
2026-04-07 17:42
options-i.ri
1.49
KB
-rw-r--r--
2026-04-07 17:42
quote-c.ri
834
B
-rw-r--r--
2026-04-07 17:42
source-i.ri
621
B
-rw-r--r--
2026-04-07 17:42
timeout%3d-c.ri
738
B
-rw-r--r--
2026-04-07 17:42
timeout-c.ri
428
B
-rw-r--r--
2026-04-07 17:42
timeout-i.ri
785
B
-rw-r--r--
2026-04-07 17:42
to_json-i.ri
403
B
-rw-r--r--
2026-04-07 17:42
to_s-i.ri
1000
B
-rw-r--r--
2026-04-07 17:42
try_convert-c.ri
817
B
-rw-r--r--
2026-04-07 17:42
union-c.ri
1.47
KB
-rw-r--r--
2026-04-07 17:42
Save
Rename
U:RDoc::AnyMethod[iI"new:ETI"Regexp::new;TT:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"NWith argument +string+ given, returns a new regexp with the given string ;TI"and options:;To:RDoc::Markup::BlankLine o:RDoc::Markup::Verbatim; [I"&r = Regexp.new('foo') # => /foo/ ;TI"&r.source # => "foo" ;TI""r.options # => 0 ;T:@format0o; ; [I"9Optional argument +options+ is one of the following:;T@o:RDoc::Markup::List: @type:BULLET:@items[o:RDoc::Markup::ListItem:@label0; [o; ; [I"A String of options:;T@o;; [I")Regexp.new('foo', 'i') # => /foo/i ;TI"*Regexp.new('foo', 'im') # => /foo/im ;T; 0o;;0; [o; ; [I"4The logical OR of one or more of the constants ;TI"BRegexp::EXTENDED, Regexp::IGNORECASE, Regexp::MULTILINE, and ;TI"Regexp::NOENCODING:;T@o;; [I"7Regexp.new('foo', Regexp::IGNORECASE) # => /foo/i ;TI"7Regexp.new('foo', Regexp::EXTENDED) # => /foo/x ;TI"7Regexp.new('foo', Regexp::MULTILINE) # => /foo/m ;TI"8Regexp.new('foo', Regexp::NOENCODING) # => /foo/n ;TI"Hflags = Regexp::IGNORECASE | Regexp::EXTENDED | Regexp::MULTILINE ;TI"9Regexp.new('foo', flags) # => /foo/mix ;T; 0o;;0; [o; ; [I"(+nil+ or +false+, which is ignored.;T@o; ; [ I"6If optional keyword argument +timeout+ is given, ;TI"Cits float value overrides the timeout interval for the class, ;TI"Regexp.timeout. ;TI"BIf +nil+ is passed as +timeout, it uses the timeout interval ;TI"#for the class, Regexp.timeout.;T@o; ; [ I"EWith argument +regexp+ given, returns a new regexp. The source, ;TI"Goptions, timeout are the same as +regexp+. +options+ and +n_flag+ ;TI"Barguments are ineffective. The timeout can be overridden by ;TI"+timeout+ keyword.;T@o;; [I"!options = Regexp::MULTILINE ;TI">r = Regexp.new('foo', options, timeout: 1.1) # => /foo/m ;TI">r2 = Regexp.new(r) # => /foo/m ;TI";r2.timeout # => 1.1 ;TI">r3 = Regexp.new(r, timeout: 3.14) # => /foo/m ;TI"<r3.timeout # => 3.14 ;T; 0o; ; [I"/Regexp.compile is an alias for Regexp.new.;T: @fileI" re.c;T:0@omit_headings_from_table_of_contents_below0I"hRegexp.new(string, options = 0, timeout: nil) -> regexp Regexp.new(regexp, timeout: nil) -> regexp ;T0[ I"(*args);T@OFI"Regexp;TcRDoc::NormalClass00