Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
COBOL | awk | C言語 | D言語 | GO言語 | Lua | Vim |
bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
tcsh | Ruby | Groovy | Java | C# | VBScript | JavaScript |
Io言語 | Python | Erlang | Scala | VB.NET | Excel/VBA | PHP |
Tcl | Haskell | OCaml | PowerShell | Windows | Unix/Linux |
Windowsコマンド > FINDSTR 文字列検索
|
|
C:\sample>FOR /L %i in (1,1,100) DO @ECHO %i >>file1
C:\sample>FOR /L %i in (1,1,200) DO @ECHO %i >>file2
C:\sample>FOR /L %i in (1,1,300) DO @ECHO %i >>file3
33
file1:33
file2:33
file2:133
file3:33
file3:133
file3:233
file1:33
file2:33
file2:133
file3:33
file3:133
file3:233
file1:33
file2:33
file3:33
file1:9
file1:90
file1:99
file2:9
file2:90
file2:99
file3:9
file3:90
file3:99
file3
C:\sample>FOR /L %i in (1,1,200) DO @ECHO %i >>file2
C:\sample>FOR /L %i in (1,1,300) DO @ECHO %i >>file3
ファイル中の文字列を検索
C:\sample>FINDSTR 33 file133
複数ファイル中の文字列を検索
C:\sample>FINDSTR 33 file1 file2 file3file1:33
file2:33
file2:133
file3:33
file3:133
file3:233
(ワイルドカード指定)複数ファイル中の文字列を検索
C:\sample>FINDSTR 33 file*file1:33
file2:33
file2:133
file3:33
file3:133
file3:233
正規表現を使い文字列を検索
C:\sample>FINDSTR "^33" file*file1:33
file2:33
file3:33
マッチしない(検索文字列が存在しない)行を抽出
C:\sample>FINDSTR /V "[1-8]" file*file1:9
file1:90
file1:99
file2:9
file2:90
file2:99
file3:9
file3:90
file3:99
検索文字列が存在するファイル名を表示
C:\sample>FINDSTR /M 222 file*file3