Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 8 of about 8 for sre (0.005 sec.)
31.3. modulefinder --- スクリプト中で使われているモジュールを検索する — Python ... 12399
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... opyreg : _inverted_registry , _slotnames , __all__ sre_compile : isstring , _sre , _optimize_unicode _sre ... : sre_constants : REPEAT_ONE , makedict , AT_END_LINE sy ... ertools : __main__ : re , itertools , baconhameggs sre_parse : _PATTERNENDERS , SRE_FLAG_UNICODE array : ... dulefinder , import , ModuleFinder , 出力 , path , sre , finder , 検索 Table of Contents 31.3. modulefind ...
https://man.plustar.jp/python/library/modulefinder.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 10935
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... acement repl . If the pattern isn't found, string is returned unchanged. repl can be a string or a functi ... >> pattern . search ( "dog" ) # Match at index 0 <_sre.SRE_Match object; span=(0, 1), match='d'> >>> patt ... ) # Match as "o" is the 2nd character of "dog". <_sre.SRE_Match object; span=(1, 2), match='o'> string 内 ... doggie" , 1 , 3 ) # Matches within given limits. <_sre.SRE_Match object; span=(1, 3), match='og'> バージョ ...
https://man.plustar.jp/python/library/re.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 10212
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... finally ends with a 'b' . Now imagine matching this RE against the string 'abcbd' . ステップ マッチした文 ... d. If they're successful, a match object instance is returned, containing information about the match: wh ... r later use. >>> m = p . match ( 'tempo' ) >>> m <_sre.SRE_Match object; span=(0, 5), match='tempo'> Now ... >> m = p . search ( '::: message' ); print ( m ) <_sre.SRE_Match object; span=(4, 11), match='message'> > ...
https://man.plustar.jp/python/howto/regex.html - [similar]
11.8. fnmatch --- Unix ファイル名のパターンマッチ — Python 3.6.5 ドキュメント 8513
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ile ( regex ) >>> reobj . match ( 'foobar.txt' ) <_sre.SRE_Match object; span=(0, 10), match='foobar.txt' ...
https://man.plustar.jp/python/library/fnmatch.html - [similar]
27.4. Python プロファイラ — Python 3.6.5 ドキュメント 8025
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . py : 268 ( _compile ) 1 0.000 0.000 0.000 0.000 sre_compile . py : 172 ( _compile_charset ) 1 0.000 0. ... 000 0.000 0.000 sre_compile . py : 201 ( _optimize_charset ) 4 0.000 0 ... .000 0.000 0.000 sre_compile . py : 25 ( _identityfunction ) 3 / 1 0.00 ... 0 0.000 0.000 0.000 sre_compile . py : 33 ( _compile ) 最初の行は 197 回の ...
https://man.plustar.jp/python/library/profile.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7790
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ASCII string usernames and passwords using UTF-8, as recommended by the RFCs. (Contributed by Milan Oberk ... ttribute for the IPv4Network and IPv6Network classes returns the name of the reverse DNS PTR record: >>> ... nlike the os.path.commonprefix() function, it always returns a valid path: >>> os . path . commonprefix ( ... ( r '(a|b).(?<=\1)c' ) >>> pat . match ( 'aac' ) <_sre.SRE_Match object; span=(0, 3), match='aac'> >>> pa ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 7175
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 対応した正規表現が利用可能で、これは新しい根底となる SRE なる実装から成り、Secret Labs AB の Fredrik Lundh ... 提供される正規表現の根底となる実装が変更されました。SRE は新しい正規表現エンジンで、Fredrik Lundh によって ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 7175
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ing Yee's pydoc module.) re モジュールのもととなる SRE エンジンに多数のバグフィックスとパフォーマンス改善 ... テレータを返す finditer() メソッドが追加されました。(SRE is maintained by Fredrik Lundh. The BIGCHARSET pat ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
PREV 1 NEXT