Skip to content

sibapybot/regex-generator-ja-v1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

regex-generator-ja-v1.0.0

このライブラリは複数のテキストを渡すことで自動でパターンを検出し出力してくれるコードです。


パターンを検出するテキストを多く入れ過ぎると処理に時間がかかるときがあります。

また、run関数を実行すると正規表現が返されますが、MeCabの使用上スペースなどは除去されます。
よって、同じパターンかどうか確認するときは 必ずis_true関数を使用 してください。

使い方

from RegexGeneratorJa.generator import run,is_true

#パターンを検出するためのテキストは3つぐらいがオススメ
texts = ["a testだあああああああ!!!asfdaa testだあああああああ!!! ","a testだあああああああ!!!barbhah ethbe  testだあああああああ!!!","a testだあああああああ!!!agfnl testだあああああああ!!!"]
#パターンを取得する
pattern = run(texts)

#同じパターンかチェックする
check = is_true("a testだあああああああ!!!asfdaasdaedea testだあああああああ!!! ",pattern=pattern)
print(check)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages