2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

開発に携わってない脆弱性診断員が、テキストの文字列検索のコードを書いてみた

Posted at

開発をやったことないから、とりあえず何か作ってみてます。

まずは、pythonでテキストファイルの文字列を探すプログラミング。
作った理由としては、文章を書くことが多いため、使用禁止の文字などをチェックするために必要だったため。

コマンドライン引数から実行

python01.png

上記のようにコマンドプロンプトをたたくと・・・

pyhton02.png

pythontest.txtの中にある「python」という文字列が存在したら発見!という文字列を表示する。

txtの中身

pythontest.txt
Python pison paison puison poison peison poson

以下ソースです。

stringParser.py
import sys
argvs = sys.argv
try:
	f = open(argvs[1],'r')
	for row in f:
		if row.find("Python") > -1:
			print("発見!!")
		else:
			print("見つかりません")
	f.close()
except:
	print("ファイルが見つかりません")

というような感じです。ひとまずコマンドライン引数は基礎なので、使えるようになっておかないと!

2
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?