1805件ヒット
[1801-1805件を表示]
(0.032秒)
別のキーワード
種類
- インスタンスメソッド (1077)
- 特異メソッド (503)
- モジュール関数 (213)
- 関数 (12)
ライブラリ
- ビルトイン (535)
-
cgi
/ core (24) - csv (60)
-
drb
/ timeridconv (12) - erb (24)
- expect (24)
-
io
/ wait (36) -
irb
/ context (12) -
irb
/ output-method (72) - kconv (60)
-
minitest
/ unit (2) - mkmf (12)
- monitor (18)
-
net
/ ftp (24) -
net
/ http (67) -
net
/ pop (24) -
net
/ smtp (24) - open3 (84)
- openssl (36)
- pp (24)
- prettyprint (48)
- rake (12)
- readline (12)
- resolv (12)
-
rexml
/ document (132) -
rubygems
/ package / tar _ output (24) -
rubygems
/ user _ interaction (48) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (18) - socket (34)
- stringio (48)
- strscan (24)
- thread (2)
- timeout (37)
- tracer (12)
- uri (24)
-
webrick
/ cgi (12) -
webrick
/ log (12) - win32ole (48)
- zlib (24)
クラス
-
ARGF
. class (24) - Array (57)
- CGI (24)
-
CGI
:: Cookie (12) - CSV (60)
-
DRb
:: TimerIdConv (12) - ERB (24)
-
Encoding
:: Converter (12) - File (12)
-
Gem
:: Package :: TarOutput (24) -
Gem
:: StreamUI (12) -
Gem
:: StreamUI :: SilentProgressReporter (12) -
Gem
:: StreamUI :: SimpleProgressReporter (12) -
Gem
:: StreamUI :: VerboseProgressReporter (12) - IO (296)
-
IRB
:: Context (12) -
IRB
:: OutputMethod (60) -
IRB
:: StdioOutputMethod (12) - Integer (48)
- MatchData (28)
-
MiniTest
:: Unit (2) - Monitor (6)
-
MonitorMixin
:: ConditionVariable (12) - Mutex (2)
-
Net
:: FTP (24) -
Net
:: HTTP (67) -
Net
:: POP3 (24) -
Net
:: SMTP (24) - Object (12)
-
OpenSSL
:: SSL :: SSLContext (24) -
OpenSSL
:: SSL :: Session (12) - PP (24)
- PrettyPrint (48)
-
RDoc
:: Options (12) -
REXML
:: AttlistDecl (12) -
REXML
:: Attribute (12) -
REXML
:: Declaration (12) -
REXML
:: DocType (12) -
REXML
:: Document (24) -
REXML
:: Element (12) -
REXML
:: Entity (12) -
REXML
:: ExternalEntity (12) -
REXML
:: Formatters :: Default (12) -
REXML
:: NotationDecl (12) -
Rake
:: Application (12) -
Resolv
:: DNS (12) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (18) - Socket (24)
- String (24)
- StringIO (48)
- StringScanner (24)
- TCPSocket (10)
-
Thread
:: ConditionVariable (12) -
Thread
:: Mutex (10) - Tracer (12)
-
URI
:: Generic (24) -
WEBrick
:: BasicLog (12) -
WEBrick
:: CGI (12) -
WIN32OLE
_ EVENT (12) -
WIN32OLE
_ PARAM (36) -
Zlib
:: GzipReader (12) -
Zlib
:: ZStream (12)
キーワード
- > (6)
- >> (6)
-
avail
_ out= (12) - begin (12)
- bytebegin (2)
- byteend (2)
- chmod (12)
- chr (24)
-
continue
_ timeout= (12) -
cpp
_ command (12) -
debug
_ output= (12) - digits (24)
- display (12)
- end (12)
- expect (24)
- fatal (12)
- fetch (36)
- filter (36)
-
force
_ output= (12) - format (12)
- header (12)
- input? (12)
-
insert
_ output (12) - instance (24)
- kconv (24)
- new (137)
-
on
_ event _ with _ outargs (12) - open (17)
-
open
_ timeout= (36) - output= (13)
- output? (12)
- pack (21)
-
pipeline
_ r (12) -
pipeline
_ rw (12) -
pipeline
_ w (24) - pointer= (12)
- popen (168)
- popen2 (12)
- popen2e (12)
- popen3 (12)
- pos= (12)
- pp (24)
- ppx (12)
- pread (8)
- print (24)
- printn (12)
- puts (12)
-
rb
_ define _ class _ under (12) - read (24)
-
read
_ nonblock (36) -
read
_ timeout= (36) - readpartial (48)
- report (12)
- retval? (12)
-
route
_ from (12) -
route
_ to (12) - select (24)
-
set
_ debug _ output (24) -
set
_ eoutvar (12) -
singleline
_ format (12) -
singleline
_ pp (12) - sleep (12)
- spawn (48)
-
ssl
_ timeout= (24) - start (12)
- status (1)
- stdout= (12)
- sysread (24)
- tcp (24)
- timeout (37)
- timeout= (24)
- timeouts= (12)
- toutf16 (12)
- toutf32 (12)
- toutf8 (12)
-
tty
_ output= (12) - unpack (12)
- wait (36)
-
wait
_ for _ cond (6) -
wait
_ readable (12) -
wait
_ writable (12) - write (132)
-
write
_ timeout= (7)
検索結果
-
StringScanner
# pos=(n) (12.0) -
スキャンポインタのインデックスを n にセットします。
...スキャンポインタのインデックスを n にセットします。
@param n 整数で、バイト単位で指定します。
負数を指定すると文字列の末尾からのオフセットとして扱います。
@raise RangeError マッチ対象の文字列の長さを超え......ingScanner.new('test string')
p s.scan(/\w+/) # => "test"
p s.pos = 1 # => 1
p s.scan(/\w+/) # => "est"
p s.pos = 7 # => 7
p s.scan(/\w+/) # => "ring"
begin
s.pos = 20
rescue RangeError => err
puts err #=> index out of range
end
p s.pos = -4 # => -4
p s.scan(/\w+/) # => "ring"
//}...