久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python re

發布時間:2023/12/8 python 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python re 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Abstract(摘要)This document is an introductory tutorial to using regular expressions in Python with the re module. It provides a gentler introduction than the corresponding section in the Library Reference.本文是通過Python的 re 模塊來使用正則表達式的一個入門教程,和庫參考手冊的對應章節相比,更為淺顯易懂、循序漸進。This document is available from http://www.amk.ca/python/howto .本文可以從 http://www.amk.ca/python/howto 捕獲Contents(目錄)Contents Introduction(簡介) Simple Patterns(簡單模式) Matching Characters(字符匹配) Repeating Things(重復) Using Regular Expressions(使用正則表達式) Compiling Regular Expressions(編譯正則表達式) The Backslash Plague(反斜杠的麻煩) Performing Matches(執行匹配) Module-Level Functions(模塊級函數) Compilation Flags(編譯標志) More Pattern Power(更多模式功能) More Metacharacters(更多的元字符) Grouping(分組) Non-capturing and Named Groups(無捕獲組和命名組) Lookahead Assertions(前向界定符) Modifying Strings(修改字符串) Splitting Strings(將字符串分片) Search and Replace(搜索和替換) Common Problems(常見問題) Use String Methods(使用字符串方式) match() versus search()(match() vs search()) Greedy versus Non-Greedy(貪婪 vs 不貪婪) Not Using re.VERBOSE(不用 re.VERBOSE) Feedback(反饋) About this document(關于本文檔)Introduction(簡介)The re module was added in Python 1.5, and provides Perl-style regular expression patterns. Earlier versions of Python came with the regex module, which provides Emacs-style patterns. Emacs-style patterns are slightly less readable and don't provide as many features, so there's not much reason to use the regex module when writing new code, though you might encounter old code that uses it.Python 自1.5版本起增加了re 模塊,它提供 Perl 風格的正則表達式模式。Python 1.5之前版本則是通過 regex 模塊提供 Emecs 風格的模式。Emacs 風格模式可讀性稍差些,而且功能也不強,因此編寫新代碼時盡量不要再使用 regex 模塊,當然偶爾你還是可能在老代碼里發現其蹤影。Regular expressions (or REs) are essentially a tiny, highly specialized programming language embedded inside Python and made available through the re module. Using this little language, you specify the rules for the set of possible strings that you want to match; this set might contain English sentences, or e-mail addresses, or TeX commands, or anything you like. You can then ask questions such as "Does this string match the pattern?", or "Is there a match for the pattern anywhere in this string?". You can also use REs to modify a string or to split it apart in various ways.就其本 質而言,正則表達式(或 RE)是一種小型的、高度專業化的編程語言,(在Python中)它內嵌在Python中,并通過 re 模塊實現。使用這個小型語言,你可以為想要匹配的相應字符串集指定規則;該字符串集可能包含英文語句、e-mail地址、TeX命令或任何你想搞定的東 西。然后你可以問諸如“這個字符串匹配該模式嗎?”或“在這個字符串中是否有部分匹配該模式呢?”。你也可以使用 RE 以各種方式來修改或分割字符串。Regular expression patterns are compiled into a series of bytecodes which are then executed by a matching engine written in C. For advanced use, it may be necessary to pay careful attention to how the engine will execute a given RE, and write the RE in a certain way in order to produce bytecode that runs faster. Optimization isn't covered in this document, because it requires that you have a good understanding of the matching engine's internals.正則表達式模式被編譯成一系列的字節碼,然后由用 C 編寫的匹配引擎執行。在高級用法中,也許還要仔細留意引擎是如何執行給定 RE ,如何以特定方式編寫 RE 以令生產的字節碼運行速度更快。本文并不涉及優化,因為那要求你已充分掌握了匹配引擎的內部機制。The regular expression language is relatively small and restricted, so not all possible string processing tasks can be done using regular expressions. There are also tasks that can be done with regular expressions, but the expressions turn out to be very complicated. In these cases, you may be better off writing Python code to do the processing; while Python code will be slower than an elaborate regular expression, it will also probably be more understandable.正 則表達式語言相對小型和受限(功能有限),因此并非所有字符串處理都能用正則表達式完成。當然也有些任務可以用正則表達式完成,不過最終表達式會變得異常 復雜。碰到這些情形時,編寫 Python 代碼進行處理可能反而更好;盡管 Python 代碼比一個精巧的正則表達式要慢些,但它更易理解。Simple Patterns(簡單模式)We'll start by learning about the simplest possible regular expressions. Since regular expressions are used to operate on strings, we'll begin with the most common task: matching characters.我們將從最簡單的正則表達式學習開始。由于正則表達式常用于字符串操作,那我們就從最常見的任務:字符匹配 下手。For a detailed explanation of the computer science underlying regular expressions (deterministic and non-deterministic finite automata), you can refer to almost any textbook on writing compilers.有關正則表達式底層的計算機科學上的詳細解釋(確定性和非確定性有限自動機),你可以查閱編寫編譯器相關的任何教科書。1. Matching Characters(字符匹配)Most letters and characters will simply match themselves. For example, the regular expression test will match the string "test" exactly. (You can enable a case-insensitive mode that would let this RE match "Test" or "TEST" as well; more about this later.)大多數字母和字符一般都會和自身匹配。例如,正則表達式 test 會和字符串“test”完全匹配。(你也可以使用大小寫不敏感模式,它還能讓這個 RE 匹配“Test”或“TEST”;稍后會有更多解釋。)There are exceptions to this rule; some characters are special, and don't match themselves. Instead, they signal that some out-of-the-ordinary thing should be matched, or they affect other portions of the RE by repeating them. Much of this document is devoted to discussing various metacharacters and what they do.這個規則當然會有例外;有些字符比較特殊,它們和自身并不匹配,而是會表明應和一些特殊的東西匹配,或者它們會影響到 RE 其它部分的重復次數。本文很大篇幅專門討論了各種元字符及其作用。Here's a complete list of the metacharacters; their meanings will be discussed in the rest of this HOWTO.這里有一個元字符的完整列表;其含義會在本指南余下部分進行討論。. ^ $ * + ? { [ ] \ | ( )The first metacharacters we'll look at are "[" and "]". They're used for specifying a character class, which is a set of characters that you wish to match. Characters can be listed individually, or a range of characters can be indicated by giving two characters and separating them by a "-". For example, [abc] will match any of the characters "a", "b", or "c"; this is the same as [a-c], which uses a range to express the same set of characters. If you wanted to match only lowercase letters, your RE would be [a-z].我們首先考察的元字符是 "[" 和 "]"。 它們常用來指定一個字符類別,所謂字符類別就是你想匹配的一個字符集。字符可以單個列出,也可以用“-”號分隔的兩個給定字符來表示一個字符區間。例如, [abc] 將匹配"a", "b", 或 "c"中的任意一個字符;也可以用區間[a-c]來表示同一字符集,和前者效果一致。如果你只想匹配小寫字母,那么 RE 應寫成 [a-z]。Metacharacters are not active inside classes. For example, [akm$] will match any of the characters "a", "k", "m", or "$"; "$" is usually a metacharacter, but inside a character class it's stripped of its special nature.元字符在類別里并不起作用。例如,[akm$]將匹配字符"a", "k", "m", 或 "$" 中的任意一個;"$"通常用作元字符,但在字符類別里,其特性被除去,恢復成普通字符。You can match the characters not within a range by complementing the set. This is indicated by including a "" as the first character of the class; `"" elsewhere will simply match the ""` character. For example, [5] will match any character except "5".你可以用補集來匹配不在區間范圍內的字符。其做法是把"^"作為類別的首個字符;其它地方的"^"只會簡單匹配 "^" 字符本身。例如,[^5] 將匹配除 "5" 之外的任意字符。Perhaps the most important metacharacter is the backslash, "\". As in Python string literals, the backslash can be followed by various characters to signal various special sequences. It's also used to escape all the metacharacters so you can still match them in patterns; for example, if you need to match a "[" or "\", you can precede them with a backslash to remove their special meaning: \[ or \\.也 許最重要的元字符是反斜杠"\"。 做為 Python 中的字符串字母,反斜杠后面可以加不同的字符以表示不同特殊意義。它也可以用于取消所有的元字符,這樣你就可以在模式中匹配它們了。舉個例子,如果你需要 匹配字符 "[" 或 "\",你可以在它們之前用反斜杠來取消它們的特殊意義: \[ 或 \\。Some of the special sequences beginning with "\" represent predefined sets of characters that are often useful, such as the set of digits, the set of letters, or the set of anything that isn't whitespace. The following predefined special sequences are available:一些用 "\" 開始的特殊字符所表示的預定義字符集通常是很有用的,象數字集,字母集,或其它非空字符集。下列是可用的預設特殊字符:\d Matches any decimal digit; this is equivalent to the class [0-9]. 匹配任何十進制數;它相當于類 [0-9]。 \D Matches any non-digit character; this is equivalent to the class [^0-9]. 匹配任何非數字字符;它相當于類 [^0-9]。 \s Matches any whitespace character; this is equivalent to the class [ \t\n\r\f\v]. 匹配任何空白字符;它相當于類 [ \t\n\r\f\v]。 \S Matches any non-whitespace character; this is equivalent to the class [^ \t\n\r\f\v]. 匹配任何非空白字符;它相當于類 [^ \t\n\r\f\v]。 \w Matches any alphanumeric character; this is equivalent to the class [a-zA-Z0-9_]. 匹配任何字母數字字符;它相當于類 [a-zA-Z0-9_]。 \W Matches any non-alphanumeric character; this is equivalent to the class [^a-zA-Z0-9_]. 匹配任何非字母數字字符;它相當于類 [^a-zA-Z0-9_]。 These sequences can be included inside a character class. For example, [\s,.] is a character class that will match any whitespace character, or "," or ".".這樣特殊字符都可以包含在一個字符類中。如,[\s,.]字符類將匹配任何空白字符或","或"."。The final metacharacter in this section is .. It matches anything except a newline character, and there's an alternate mode (re.DOTALL) where it will match even a newline. "." is often used where you want to match any character.本節最后一個元字符是 . 。它匹配除了換行字符外的任何字符,在 alternate 模式(re.DOTALL)下它甚至可以匹配換行。"." 通常被用于你想匹配“任何字符”的地方。2. Repeating Things(重復)Being able to match varying sets of characters is the first thing regular expressions can do that isn't already possible with the methods available on strings. However, if that was the only additional capability of regexes, they wouldn't be much of an advance. Another capability is that you can specify that portions of the RE must be repeated a certain number of times.正則表達式第一件能做的事是能夠匹配不定長的字符集,而這是其它能作用在字符串上的方法所不能做到的。 不過,如果那是正則表達式唯一的附加功能的話,那么它們也就不那么優秀了。它們的另一個功能就是你可以指定正則表達式的一部分的重復次數。The first metacharacter for repeating things that we'll look at is *. * doesn't match the literal character "*"; instead, it specifies that the previous character can be matched zero or more times, instead of exactly once.我們討論的第一個重復功能的元字符是 *。* 并不匹配字母字符 "*";相反,它指定前一個字符可以被匹配零次或更多次,而不是只有一次。For example, ca*t will match "ct" (0 "a"characters), "cat" (1 "a"), "caaat" (3 "a"characters), and so forth. The RE engine has various internal limitations stemming from the size of C's int type, that will prevent it from matching over 2 billion "a" characters; you probably don't have enough memory to construct a string that large, so you shouldn't run into that limit.舉個例子, ca*t 將匹配 "ct" (0 個 "a" 字符), "cat" (1 個 "a"), "caaat" (3 個 "a" 字符)等等。RE 引擎有各種來自 C 的整數類型大小的內部限制,以防止它匹配超過2億個 "a" 字符;你也許沒有足夠的內存去建造那么大的字符串,所以將不會累計到那個限制。Repetitions such as * are greedy; when repeating a RE, the matching engine will try to repeat it as many times as possible. If later portions of the pattern don't match, the matching engine will then back up and try again with few repetitions.象 * 這樣地重復是“貪婪的”;當重復一個 RE 時,匹配引擎會試著重復盡可能多的次數。如果模式的后面部分沒有被匹配,匹配引擎將退回并再次嘗試更小的重復。A step-by-step example will make this more obvious. Let's consider the expression a[bcd]*b. This matches the letter "a", zero or more letters from the class [bcd], and finally ends with a "b". Now imagine matching this RE against the string "abcbd".一步步的示例可以使它更加清晰。讓我們考慮表達式 a[bcd]*b。它匹配字母 "a",零個或更多個來自類 [bcd]中的字母,最后以 "b" 結尾?,F在想一想該 RE 對字符串 "abcbd" 的匹配。StepMatchedExplanation1aThe a in the RE matches.a 匹配模式2abcbdThe engine matches [bcd]*, going as far as it can, which is to the end of the string.引擎匹配 [bcd]*,并盡其所能匹配到字符串的結尾3FailureThe engine tries to match b, but the current position is at the end of the string, so it fails.引擎嘗試匹配 b,但當前位置已經是字符的最后了,所以失敗4abcbBack up, so that [bcd]* matches one less character.退回,[bcd]*嘗試少匹配一個字符。5FailureTry b again, but the current position is at the last character, which is a "d".再次嘗次b,但在當前最后一位字符是"d"。6abcBack up again, so that [bcd]* is only matching "bc".再次退回,[bcd]*只匹配 "bc"。7abcbTry b again. This time but the character at the current position is "b", so it succeeds.再次嘗試 b ,這次當前位上的字符正好是 "b"The end of the RE has now been reached, and it has matched "abcb". This demonstrates how the matching engine goes as far as it can at first, and if no match is found it will then progressively back up and retry the rest of the RE again and again. It will back up until it has tried zero matches for [bcd]*, and if that subsequently fails, the engine will conclude that the string doesn't match the RE at all.RE 的結尾部分現在可以到達了,它匹配 "abcb"。這證明了匹配引擎一開始會盡其所能進行匹配,如果沒有匹配然后就逐步退回并反復嘗試 RE 剩下來的部分。直到它退回嘗試匹配 [bcd] 到零次為止,如果隨后還是失敗,那么引擎就會認為該字符串根本無法匹配 RE 。Another repeating metacharacter is +, which matches one or more times. Pay careful attention to the difference between * and +; * matches zero or more times, so whatever's being repeated may not be present at all, while + requires at least one occurrence. To use a similar example, ca+t will match "cat" (1 "a"), "caaat" (3 "a"'s), but won't match "ct".另 一個重復元字符是 +,表示匹配一或更多次。請注意 * 和 + 之間的不同;* 匹配零或更多次,所以根本就可以不出現,而 + 則要求至少出現一次。用同一個例子,ca+t 就可以匹配 "cat" (1 個 "a"), "caaat" (3 個 "a"), 但不能匹配 "ct"。There are two more repeating qualifiers. The question mark character, ?, matches either once or zero times; you can think of it as marking something as being optional. For example, home-?brew matches either "homebrew" or "home-brew".還有更多的限定符。問號 ? 匹配一次或零次;你可以認為它用于標識某事物是可選的。例如:home-?brew 匹配 "homebrew" 或 "home-brew"。The most complicated repeated qualifier is {m,n}, where m and n are decimal integers. This qualifier means there must be at least m repetitions, and at most n. For example, a/{1,3}b will match "a/b", "a//b", and "a///b". It won't match "ab", which has no slashes, or "ab", which has four.最復雜的重復限定符是 {m,n},其中 m 和 n 是十進制整數。該限定符的意思是至少有 m 個重復,至多到 n 個重復。舉個例子,a/{1,3}b 將匹配 "a/b","a//b" 和 "a///b"。它不能匹配 "ab" 因為沒有斜杠,也不能匹配 "ab" ,因為有四個。You can omit either m or n; in that case, a reasonable value is assumed for the missing value. Omitting m is interpreted as a lower limit of 0, while omitting n results in an upper bound of infinity -- actually, the 2 billion limit mentioned earlier, but that might as well be infinity.你可以忽略 m 或 n;因為會為缺失的值假設一個合理的值。忽略 m 會認為下邊界是 0,而忽略 n 的結果將是上邊界為無窮大 -- 實際上是先前我們提到的 2 兆,但這也許同無窮大一樣。Readers of a reductionist bent may notice that the three other qualifiers can all be expressed using this notation. {0,} is the same as *, {1,} is equivalent to +, and {0,1} is the same as ?. It's better to use *, +, or ? when you can, simply because they're shorter and easier to read.細心的讀者也許注意到其他三個限定符都可以用這樣方式來表示。 {0,} 等同于 *,{1,} 等同于 +,而{0,1}則與 ? 相同。如果可以的話,最好使用 *,+,或?。很簡單因為它們更短也再容易懂。Using Regular Expressions(使用正則表達式)Now that we've looked at some simple regular expressions, how do we actually use them in Python? The re module provides an interface to the regular expression engine, allowing you to compile REs into objects and then perform matches with them.現在我們已經看了一些簡單的正則表達式,那么我們實際在 Python 中是如何使用它們的呢? re 模塊提供了一個正則表達式引擎的接口,可以讓你將 REs 編譯成對象并用它們來進行匹配。1. Compiling Regular Expressions(編譯正則表達式)Regular expressions are compiled into RegexObject instances, which have methods for various operations such as searching for pattern matches or performing string substitutions.正則表達式被編譯成 RegexObject 實例,可以為不同的操作提供方法,如模式匹配搜索或字符串替換。Toggle line numbersToggle line numbersToggle line numbers 1 >>> import re 2 >>> p = re.compile('ab*') 3 >>> print p 4 re.compile() also accepts an optional flags argument, used to enable various special features and syntax variations. We'll go over the available settings later, but for now a single example will do:re.compile() 也接受可選的標志參數,常用來實現不同的特殊功能和語法變更。我們稍后將查看所有可用的設置,但現在只舉一個例子:Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('ab*', re.IGNORECASE)The RE is passed to re.compile() as a string. REs are handled as strings because regular expressions aren't part of the core Python language, and no special syntax was created for expressing them. (There are applications that don't need REs at all, so there's no need to bloat the language specification by including them.) Instead, the re module is simply a C extension module included with Python, just like the socket or zlib module.RE 被做為一個字符串發送給 re.compile()。REs 被處理成字符串是因為正則表達式不是 Python 語言的核心部分,也沒有為它創建特定的語法。(應用程序根本就不需要 REs,因此沒必要包含它們去使語言說明變得臃腫不堪。)而 re 模塊則只是以一個 C 擴展模塊的形式來被 Python 包含,就象 socket 或 zlib 模塊一樣。Putting REs in strings keeps the Python language simpler, but has one disadvantage which is the topic of the next section.將 REs 作為字符串以保證 Python 語言的簡潔,但這樣帶來的一個麻煩就是象下節標題所講的。2. The Backslash Plague(反斜杠的麻煩)As stated earlier, regular expressions use the backslash character ("\") to indicate special forms or to allow special characters to be used without invoking their special meaning. This conflicts with Python's usage of the same character for the same purpose in string literals.在早期規定中,正則表達式用反斜杠字符 ("\") 來表示特殊格式或允許使用特殊字符而不調用它的特殊用法。這就與 Python 在字符串中的那些起相同作用的相同字符產生了沖突。Let's say you want to write a RE that matches the string "\section", which might be found in a LATEX file. To figure out what to write in the program code, start with the desired string to be matched. Next, you must escape any backslashes and other metacharacters by preceding them with a backslash, resulting in the string "\\section". The resulting string that must be passed to re.compile() must be \\section. However, to express this as a Python string literal, both backslashes must be escaped again.讓我們舉例說明,你想寫一個 RE 以匹配字符串 "\section",可能是在一個 LATEX 文件查找。為了要在程序代碼中判斷,首先要寫出想要匹配的字符串。接下來你需要在所有反斜杠和元字符前加反斜杠來取消其特殊意義。Characters(字符)Stage(階段)\sectionText string to be matched(要匹配的字符串)\\sectionEscaped backslash for re.compile(為 re.compile 取消反斜杠的特殊意義)"\\\\section"Escaped backslashes for a string literal(為字符串取消反斜杠)In short, to match a literal backslash, one has to write '\\\\' as the RE string, because the regular expression must be "\\", and each backslash must be expressed as "\\" inside a regular Python string literal. In REs that feature backslashes repeatedly, this leads to lots of repeated backslashes and makes the resulting strings difficult to understand.簡 單地說,為了匹配一個反斜杠,不得不在 RE 字符串中寫 '\\\\',因為正則表達式中必須是 "\\",而每個反斜杠按 Python 字符串字母表示的常規必須表示成 "\\"。在 REs 中反斜杠的這個重復特性會導致大量重復的反斜杠,而且所生成的字符串也很難懂。The solution is to use Python's raw string notation for regular expressions; backslashes are not handled in any special way in a string literal prefixed with "r", so r"\n" is a two-character string containing "\" and "n", while "\n" is a one-character string containing a newline. Frequently regular expressions will be expressed in Python code using this raw string notation.解 決的辦法就是為正則表達式使用 Python 的 raw 字符串表示;在字符串前加個 "r" 反斜杠就不會被任何特殊方式處理,所以 r"\n" 就是包含"\" 和 "n" 的兩個字符,而 "\n" 則是一個字符,表示一個換行。正則表達式通常在 Python 代碼中都是用這種 raw 字符串表示。Regular String(常規字符串)Raw string(Raw 字符串)"ab*"r"ab*""\\\\section"r"\\section""\\w+\\s+\\1"r"\w+\s+\1"3. Performing Matches(執行匹配)Once you have an object representing a compiled regular expression, what do you do with it? RegexObject instances have several methods and attributes. Only the most significant ones will be covered here; consult the Library Reference for a complete listing.一旦你有了已經編譯了的正則表達式的對象,你要用它做什么呢?RegexObject 實例有一些方法和屬性。這里只顯示了最重要的幾個,如果要看完整的列表請查閱 Library Refference。Method/Attribute(方法/屬性)Purpose(作用)match()Determine if the RE matches at the beginning of the string.決定 RE 是否在字符串剛開始的位置匹配search()Scan through a string, looking for any location where this RE matches.掃描字符串,找到這個 RE 匹配的位置findall()Find all substrings where the RE matches, and returns them as a list.找到 RE 匹配的所有子串,并把它們作為一個列表返回finditer()Find all substrings where the RE matches, and returns them as an iterator.找到 RE 匹配的所有子串,并把它們作為一個迭代器返回match() and search() return None if no match can be found. If they're successful, a MatchObject instance is returned, containing information about the match: where it starts and ends, the substring it matched, and more.如果沒有匹配到的話,match() 和 search() 將返回 None。如果成功的話,就會返回一個 MatchObject 實例,其中有這次匹配的信息:它是從哪里開始和結束,它所匹配的子串等等。You can learn about this by interactively experimenting with the re module. If you have Tkinter available, you may also want to look at Tools/scripts/redemo.py, a demonstration program included with the Python distribution. It allows you to enter REs and strings, and displays whether the RE matches or fails. redemo.py can be quite useful when trying to debug a complicated RE. Phil Schwartz's Kodos is also an interactive tool for developing and testing RE patterns. This HOWTO will use the standard Python interpreter for its examples.你可以用采用人機對話并用 re 模塊實驗的方式來學習它。如果你有 Tkinter 的話,你也許可以考慮參考一下 Tools/scripts/redemo.py,一個包含在 Python 發行版里的示范程序。First, run the Python interpreter, import the re module, and compile a RE:首先,運行 Python 解釋器,導入 re 模塊并編譯一個 RE:Toggle line numbersToggle line numbersToggle line numbers 1 Python 2.2.2 (#1, Feb 10 2003, 12:57:01) 2 >>> import re 3 >>> p = re.compile('[a-z]+') 4 >>> p 5 <_sre sre_pattern="" object="" at="" 80c3c28="">ERROR: EOF in multi-line statementNow, you can try matching various strings against the RE [a-z]+. An empty string shouldn't match at all, since + means 'one or more repetitions'. match() should return None in this case, which will cause the interpreter to print no output. You can explicitly print the result of match() to make this clear.現 在,你可以試著用 RE 的 [a-z]+ 去匹配不同的字符串。一個空字符串將根本不能匹配,因為 + 的意思是 “一個或更多的重復次數”。 在這種情況下 match() 將返回 None,因為它使解釋器沒有輸出。你可以明確地打印出 match() 的結果來弄清這一點。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p.match("") 2 >>> print p.match("") 3 NoneNow, let's try it on a string that it should match, such as "tempo". In this case, match() will return a MatchObject, so you should store the result in a variable for later use.現在,讓我們試著用它來匹配一個字符串,如 "tempo"。這時,match() 將返回一個 MatchObject。因此你可以將結果保存在變量里以便后面使用。Toggle line numbersToggle line numbersToggle line numbers 1 >>> m = p.match( 'tempo') 2 >>> print m 3 <_sre sre_match="" object="" at="" 80c4f68="">Now you can query the MatchObject for information about the matching string. MatchObject instances also have several methods and attributes; the most important ones are:現在你可以查詢 MatchObject 關于匹配字符串的相關信息了。MatchObject 實例也有幾個方法和屬性;最重要的那些如下所示:Method/Attribute(方法/屬性)Purpose(作用)group()Return the string matched by the RE返回被 RE 匹配的字符串start()Return the starting position of the match返回匹配開始的位置end()Return the ending position of the match返回匹配結束的位置span()Return a tuple containing the (start, end) positions of the match返回一個元組包含匹配 (開始,結束) 的位置Trying these methods will soon clarify their meaning:試試這些方法不久就會清楚它們的作用了:Toggle line numbersToggle line numbersToggle line numbers 1 >>> m.group() 2 'tempo' 3 >>> m.start(), m.end() 4 (0, 5) 5 >>> m.span() 6 (0, 5)group() returns the substring that was matched by the RE. start() and end() return the starting and ending index of the match. span() returns both start and end indexes in a single tuple. Since the match method only checks if the RE matches at the start of a string, start() will always be zero. However, the search method of RegexObject instances scans through the string, so the match may not start at zero in that case.group() 返回 RE 匹配的子串。start() 和 end() 返回匹配開始和結束時的索引。span() 則用單個元組把開始和結束時的索引一起返回。因為匹配方法檢查到如果 RE 在字符串開始處開始匹配,那么 start() 將總是為零。然而, RegexObject 實例的 search 方法掃描下面的字符串的話,在這種情況下,匹配開始的位置就也許不是零了。Toggle line numbersToggle line numbersToggle line numbers 1 >>> print p.match('::: message') 2 None 3 >>> m = p.search('::: message') ; print m 4 5 >>> m.group() 6 'message' 7 >>> m.span() 8 (4, 11)In actual programs, the most common style is to store the MatchObject in a variable, and then check if it was None. This usually looks like:在實際程序中,最常見的作法是將 MatchObject 保存在一個變量里,然后檢查它是否為 None,通常如下所示:Toggle line numbersToggle line numbersToggle line numbers 1 p = re.compile( ... ) 2 m = p.match( 'string goes here' ) 3 if m: 4 print 'Match found: ', m.group() 5 else: 6 print 'No match'Two RegexObject methods return all of the matches for a pattern. findall() returns a list of matching strings:兩個 RegexObject 方法返回所有匹配模式的子串。findall()返回一個匹配字符串列表:Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('\d+') 2 >>> p.findall('12 drummers drumming, 11 pipers piping, 10 lords a-leaping') 3 ['12', '11', '10']findall() has to create the entire list before it can be returned as the result. In Python 2.2, the finditer() method is also available, returning a sequence of MatchObject instances as an iterator.findall() 在它返回結果時不得不創建一個列表。在 Python 2.2中,也可以用 finditer() 方法。Toggle line numbersToggle line numbersToggle line numbers 1 >>> iterator = p.finditer('12 drummers drumming, 11 ... 10 ...') 2 >>> iterator 3 4 >>> for match in iterator: 5 ... print match.span() 6 ... 7 (0, 2) 8 (22, 24) 9 (29, 31)4. Module-Level Functions(模塊級函數)You don't have to produce a RegexObject and call its methods; the re module also provides top-level functions called match(), search(), sub(), and so forth. These functions take the same arguments as the corresponding RegexObject method, with the RE string added as the first argument, and still return either None or a MatchObject instance.你不一定要產生一個 RegexObject 對象然后再調用它的方法;re 模塊也提供了頂級函數調用如 match()、search()、sub() 等等。這些函數使用 RE 字符串作為第一個參數,而后面的參數則與相應 RegexObject 的方法參數相同,返回則要么是 None 要么就是一個 MatchObject 的實例。Toggle line numbersToggle line numbersToggle line numbers 1 >>> print re.match(r'From\s+', 'Fromage amk') 2 None 3 >>> re.match(r'From\s+', 'From amk Thu May 14 19:12:10 1998') 4 Under the hood, these functions simply produce a RegexObject for you and call the appropriate method on it. They also store the compiled object in a cache, so future calls using the same RE are faster.Under the hood, 這些函數簡單地產生一個 RegexOject 并在其上調用相應的方法。它們也在緩存里保存編譯后的對象,因此在將來調用用到相同 RE 時就會更快。Should you use these module-level functions, or should you get the RegexObject and call its methods yourself? That choice depends on how frequently the RE will be used, and on your personal coding style. If a RE is being used at only one point in the code, then the module functions are probably more convenient. If a program contains a lot of regular expressions, or re-uses the same ones in several locations, then it might be worthwhile to collect all the definitions in one place, in a section of code that compiles all the REs ahead of time. To take an example from the standard library, here's an extract from xmllib.py: 你將使用這些模塊級函數,還是先得到一個 RegexObject 再調用它的方法呢?如何選擇依賴于怎樣用 RE 更有效率以及你個人編碼風格。如果一個 RE 在代碼中只做用一次的話,那么模塊級函數也許更方便。如果程序包含很多的正則表達式,或在多處復用同一個的話,那么將全部定義放在一起,在一段代碼中提前 編譯所有的 REs 更有用。從標準庫中看一個例子,這是從 xmllib.py 文件中提取出來的:Toggle line numbersToggle line numbersToggle line numbers 1 ref = re.compile( ... ) 2 entityref = re.compile( ... ) 3 charref = re.compile( ... ) 4 starttagopen = re.compile( ... )I generally prefer to work with the compiled object, even for one-time uses, but few people will be as much of a purist about this as I am.我通常更喜歡使用編譯對象,甚至它只用一次,but few people will be as much of a purist about this as I am。5. Compilation Flags(編譯標志)Compilation flags let you modify some aspects of how regular expressions work. Flags are available in the re module under two names, a long name such as IGNORECASE, and a short, one-letter form such as I. (If you're familiar with Perl's pattern modifiers, the one-letter forms use the same letters; the short form of re.VERBOSE is re.X, for example.) Multiple flags can be specified by bitwise OR-ing them; re.I | re.M sets both the I and M flags, for example.編 譯標志讓你可以修改正則表達式的一些運行方式。在 re 模塊中標志可以使用兩個名字,一個是全名如 IGNORECASE,一個是縮寫,一字母形式如 I。(如果你熟悉 Perl 的模式修改,一字母形式使用同樣的字母;例如 re.VERBOSE的縮寫形式是 re.X。)多個標志可以通過按位 OR-ing 它們來指定。如 re.I | re.M 被設置成 I 和 M 標志:Here's a table of the available flags, followed by a more detailed explanation of each one.這有個可用標志表,對每個標志后面都有詳細的說明。Flag(標志)Meaning(含義)DOTALL, SMake . match any character, including newlines使 . 匹配包括換行在內的所有字符IGNORECASE, IDo case-insensitive matches使匹配對大小寫不敏感LOCALE, LDo a locale-aware match做本地化識別(locale-aware)匹配MULTILINE, MMulti-line matching, affecting and $[[BR]]多行匹配,影響 和 $VERBOSE, XEnable verbose REs, which can be organized more cleanly and understandably.能夠使用 REs 的 verbose 狀態,使之被組織得更清晰易懂IIGNORECASE Perform case-insensitive matching; character class and literal strings will match letters by ignoring case. For example, [A-Z] will match lowercase letters, too, and Spam will match "Spam", "spam", or "spAM". This lowercasing doesn't take the current locale into account; it will if you also set the LOCALE flag. 使匹配對大小寫不敏感;字符類和字符串匹配字母時忽略大小寫。舉個例子,[A-Z]也可以匹配小寫字母,Spam 可以匹配 "Spam", "spam", 或 "spAM"。這個小寫字母并不考慮當前位置。 LLOCALE Make \w, \W, \b, and \B, dependent on the current locale. 影響 \w, \W, \b, 和 \B,這取決于當前的本地化設置。 Locales are a feature of the C library intended to help in writing programs that take account of language differences. For example, if you're processing French text, you'd want to be able to write \w+ to match words, but \w only matches the character class [A-Za-z]; it won't match "é" or "?". If your system is configured properly and a French locale is selected, certain C functions will tell the program that "é" should also be considered a letter. Setting the LOCALE flag when compiling a regular expression will cause the resulting compiled object to use these C functions for \w; this is slower, but also enables \w+ to match French words as you'd expect. locales 是 C 語言庫中的一項功能,是用來為需要考慮不同語言的編程提供幫助的。舉個例子,如果你正在處理法文文本,你想用 \w+ 來匹配文字,但 \w 只匹配字符類 [A-Za-z];它并不能匹配 "é" 或 "?"。如果你的系統配置適當且本地化設置為法語,那么內部的 C 函數將告訴程序 "é" 也應該被認為是一個字母。當在編譯正則表達式時使用 LOCALE 標志會得到用這些 C 函數來處理 \w 后的編譯對象;這會更慢,但也會象你希望的那樣可以用 \w+ 來匹配法文文本。 MMULTILINE (^ and $ haven't been explained yet; they'll be introduced in section 4.1.) (此時 ^ 和 $ 不會被解釋; 它們將在 4.1 節被介紹.) Usually matches only at the beginning of the string, and $ matches only at the end of the string and immediately before the newline (if any) at the end of the string. When this flag is specified, matches at the beginning of the string and at the beginning of each line within the string, immediately following each newline. Similarly, the $ metacharacter matches either at the end of the string and at the end of each line (immediately preceding each newline). 使用 只匹配字符串的開始,而 $ 則只匹配字符串的結尾和直接在換行前(如果有的話)的字符串結尾。當本標志指定后, 匹配字符串的開始和字符串中每行的開始。同樣的, $ 元字符匹配字符串結尾和字符串中每行的結尾(直接在每個換行之前)。 SDOTALL Makes the "." special character match any character at all, including a newline; without this flag, "." will match anything except a newline. 使 "." 特殊字符完全匹配任何字符,包括換行;沒有這個標志, "." 匹配除了換行外的任何字符。 XVERBOSE This flag allows you to write regular expressions that are more readable by granting you more flexibility in how you can format them. When this flag has been specified, whitespace within the RE string is ignored, except when the whitespace is in a character class or preceded by an unescaped backslash; this lets you organize and indent the RE more clearly. It also enables you to put comments within a RE that will be ignored by the engine; comments are marked by a "#" that's neither in a character class or preceded by an unescaped backslash. 該 標志通過給予你更靈活的格式以便你將正則表達式寫得更易于理解。當該標志被指定時,在 RE 字符串中的空白符被忽略,除非該空白符在字符類中或在反斜杠之后;這可以讓你更清晰地組織和縮進 RE。它也可以允許你將注釋寫入 RE,這些注釋會被引擎忽略;注釋用 "#"號 來標識,不過該符號不能在字符串或反斜杠之后。 For example, here's a RE that uses re.VERBOSE; see how much easier it is to read? 舉個例子,這里有一個使用 re.VERBOSE 的 RE;看看讀它輕松了多少? Toggle line numbersToggle line numbersToggle line numbers 1 charref = re.compile(r""" 2 &[#] # Start of a numeric entity reference 3 ( 4 [0-9]+[^0-9] # Decimal form 5 | 0[0-7]+[^0-7] # Octal form 6 | x[0-9a-fA-F]+[^0-9a-fA-F] # Hexadecimal form 7 ) 8 """, re.VERBOSE) Without the verbose setting, the RE would look like this: 沒有 verbose 設置, RE 會看起來象這樣: Toggle line numbersToggle line numbersToggle line numbers 1 charref = re.compile("&#([0-9]+[^0-9]" 2 "|0[0-7]+[^0-7]" 3 "|x[0-9a-fA-F]+[^0-9a-fA-F])") In the above example, Python's automatic concatenation of string literals has been used to break up the RE into smaller pieces, but it's still more difficult to understand than the version using re.VERBOSE. 在上面的例子里,Python 的字符串自動連接可以用來將 RE 分成更小的部分,但它比用 re.VERBOSE 標志時更難懂。 More Pattern Power(更多模式功能)So far we've only covered a part of the features of regular expressions. In this section, we'll cover some new metacharacters, and how to use groups to retrieve portions of the text that was matched.到目前為止,我們只展示了正則表達式的一部分功能。在本節,我們將展示一些新的元字符和如何使用組來檢索被匹配的文本部分。1. More Metacharacters(更多的元字符)There are some metacharacters that we haven't covered yet. Most of them will be covered in this section.還有一些我們還沒展示的元字符,其中的大部分將在本節展示。Some of the remaining metacharacters to be discussed are zero-width assertions. They don't cause the engine to advance through the string; instead, they consume no characters at all, and simply succeed or fail. For example, \b is an assertion that the current position is located at a word boundary; the position isn't changed by the \b at all. This means that zero-width assertions should never be repeated, because if they match once at a given location, they can obviously be matched an infinite number of times.剩 下來要討論的一部分元字符是零寬界定符(zero-width assertions)。它們并不會使引擎在處理字符串時更快;相反,它們根本就沒有對應任何字符,只是簡單的成功或失敗。舉個例子, \b 是一個在單詞邊界定位當前位置的界定符(assertions),這個位置根本就不會被 \b 改變。這意味著零寬界定符(zero-width assertions)將永遠不會被重復,因為如果它們在給定位置匹配一次,那么它們很明顯可以被匹配無數次。| Alternation, or the "or" operator. If A and B are regular expressions, A|B will match any string that matches either "A" or "B". | has very low precedence in order to make it work reasonably when you're alternating multi-character strings. Crow|Servo will match either "Crow" or "Servo", not "Cro", a "w" or an "S", and "ervo". 可 選項,或者 "or" 操作符。如果 A 和 B 是正則表達式,A|B 將匹配任何匹配了 "A" 或 "B" 的字符串。| 的優先級非常低,是為了當你有多字符串要選擇時能適當地運行。Crow|Servo 將匹配"Crow" 或 "Servo", 而不是 "Cro", 一個 "w" 或 一個 "S", 和 "ervo"。 To match a literal "|", use \|, or enclose it inside a character class, as in [|]. 為了匹配字母 "|",可以用 \|,或將其包含在字符類中,如[|]。 ^ Matches at the beginning of lines. Unless the MULTILINE flag has been set, this will only match at the beginning of the string. In MULTILINE mode, this also matches immediately after each newline within the string. 匹配行首。除非設置 MULTILINE 標志,它只是匹配字符串的開始。在 MULTILINE 模式里,它也可以直接匹配字符串中的每個換行。 For example, if you wish to match the word "From" only at the beginning of a line, the RE to use is ^From. 例如,如果你只希望匹配在行首單詞 "From",那么 RE 將用 ^From。 Toggle line numbersToggle line numbersToggle line numbers 1 >>> print re.search('^From', 'From Here to Eternity') 2 3 >>> print re.search('^From', 'Reciting From Memory') 4 None$ Matches at the end of a line, which is defined as either the end of the string, or any location followed by a newline character. 匹配行尾,行尾被定義為要么是字符串尾,要么是一個換行字符后面的任何位置。 Toggle line numbersToggle line numbersToggle line numbers 1 >>> print re.search('}$', '{block}') 2 3 >>> print re.search('}$', '{block} ') 4 None 5 >>> print re.search('}$', '{block}\n') 6 To match a literal "$", use \$ or enclose it inside a character class, as in [$]. 匹配一個 "$",使用 \$ 或將其包含在字符類中,如[$]。 \A Matches only at the start of the string. When not in MULTILINE mode, \A and are effectively the same. In MULTILINE mode, however, they're different; \A still matches only at the beginning of the string, but may match at any location inside the string that follows a newline character. 只匹配字符串首。當不在 MULTILINE 模式,\A 和 實際上是一樣的。然而,在 MULTILINE 模式里它們是不同的;\A 只是匹配字符串首,而 還可以匹配在換行符之后字符串的任何位置。 \Z Matches only at the end of the string. 只匹配字符串尾。 \b Word boundary. This is a zero-width assertion that matches only at the beginning or end of a word. A word is defined as a sequence of alphanumeric characters, so the end of a word is indicated by whitespace or a non-alphanumeric character. 單詞邊界。這是個零寬界定符(zero-width assertions)只用以匹配單詞的詞首和詞尾。單詞被定義為一個字母數字序列,因此詞尾就是用空白符或非字母數字符來標示的。 The following example matches "class" only when it's a complete word; it won't match when it's contained inside another word. 下面的例子只匹配 "class" 整個單詞;而當它被包含在其他單詞中時不匹配。 Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile(r'\bclass\b') 2 >>> print p.search('no class at all') 3 4 >>> print p.search('the declassified algorithm') 5 None 6 >>> print p.search('one subclass is') 7 None There are two subtleties you should remember when using this special sequence. First, this is the worst collision between Python's string literals and regular expression sequences. In Python's string literals, "\b" is the backspace character, ASCII value 8. If you're not using raw strings, then Python will convert the "\b" to a backspace, and your RE won't match as you expect it to. The following example looks the same as our previous RE, but omits the "r" in front of the RE string. 當 用這個特殊序列時你應該記住這里有兩個微妙之處。第一個是 Python 字符串和正則表達式之間最糟的沖突。在 Python 字符串里,"\b" 是反斜杠字符,ASCII值是8。如果你沒有使用 raw 字符串時,那么 Python 將會把 "\b" 轉換成一個回退符,你的 RE 將無法象你希望的那樣匹配它了。下面的例子看起來和我們前面的 RE 一樣,但在 RE 字符串前少了一個 "r" 。 Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('\bclass\b') 2 >>> print p.search('no class at all') 3 None 4 >>> print p.search('\b' + 'class' + '\b') 5 Second, inside a character class, where there's no use for this assertion, \b represents the backspace character, for compatibility with Python's string literals. 第二個在字符類中,這個限定符(assertion)不起作用,\b 表示回退符,以便與 Python 字符串兼容。 \B Another zero-width assertion, this is the opposite of \b, only matching when the current position is not at a word boundary. 另一個零寬界定符(zero-width assertions),它正好同 \b 相反,只在當前位置不在單詞邊界時匹配。 2. Grouping(分組)Frequently you need to obtain more information than just whether the RE matched or not. Regular expressions are often used to dissect strings by writing a RE divided into several subgroups which match different components of interest. For example, an RFC-822 header line is divided into a header name and a value, separated by a ":". This can be handled by writing a regular expression which matches an entire header line, and has one group which matches the header name, and another group which matches the header's value.你經常 需要得到比 RE 是否匹配還要多的信息。正則表達式常常用來分析字符串,編寫一個 RE 匹配感興趣的部分并將其分成幾個小組。舉個例子,一個 RFC-822 的頭部用 ":" 隔成一個頭部名和一個值,這就可以通過編寫一個正則表達式匹配整個頭部,用一組匹配頭部名,另一組匹配頭部值的方式來處理。Groups are marked by the "(", ")" metacharacters. "(" and ")" have much the same meaning as they do in mathematical expressions; they group together the expressions contained inside them. For example, you can repeat the contents of a group with a repeating qualifier, such as *, +, ?, or {m,n}. For example, (ab)* will match zero or more repetitions of "ab".組是通過 "(" 和 ")" 元字符來標識的。 "(" 和 ")" 有很多在數學表達式中相同的意思;它們一起把在它們里面的表達式組成一組。舉個例子,你可以用重復限制符,象 *, +, ?, 和 {m,n},來重復組里的內容,比如說(ab)* 將匹配零或更多個重復的 "ab"。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('(ab)*') 2 >>> print p.match('ababababab').span() 3 (0, 10)Groups indicated with "(", ")" also capture the starting and ending index of the text that they match; this can be retrieved by passing an argument to group(), start(), end(), and span(). Groups are numbered starting with 0. Group 0 is always present; it's the whole RE, so MatchObject methods all have group 0 as their default argument. Later we'll see how to express groups that don't capture the span of text that they match.組用 "(" 和 ")" 來指定,并且得到它們匹配文本的開始和結尾索引;這就可以通過一個參數用 group()、start()、end() 和 span() 來進行檢索。組是從 0 開始計數的。組 0 總是存在;它就是整個 RE,所以 MatchObject 的方法都把組 0 作為它們缺省的參數。稍后我們將看到怎樣表達不能得到它們所匹配文本的 span。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('(a)b') 2 >>> m = p.match('ab') 3 >>> m.group() 4 'ab' 5 >>> m.group(0) 6 'ab'Subgroups are numbered from left to right, from 1 upward. Groups can be nested; to determine the number, just count the opening parenthesis characters, going from left to right.小組是從左向右計數的,從1開始。組可以被嵌套。計數的數值可以能過從左到右計算打開的括號數來確定。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('(a(b)c)d') 2 >>> m = p.match('abcd') 3 >>> m.group(0) 4 'abcd' 5 >>> m.group(1) 6 'abc' 7 >>> m.group(2) 8 'b'group() can be passed multiple group numbers at a time, in which case it will return a tuple containing the corresponding values for those groups.group() 可以一次輸入多個組號,在這種情況下它將返回一個包含那些組所對應值的元組。Toggle line numbersToggle line numbersToggle line numbers 1 >>> m.group(2,1,2) 2 ('b', 'abc', 'b')The groups() method returns a tuple containing the strings for all the subgroups, from 1 up to however many there are.The groups() 方法返回一個包含所有小組字符串的元組,從 1 到 所含的小組號。Toggle line numbersToggle line numbersToggle line numbers 1 >>> m.groups() 2 ('abc', 'b')Backreferences in a pattern allow you to specify that the contents of an earlier capturing group must also be found at the current location in the string. For example, \1 will succeed if the exact contents of group 1 can be found at the current position, and fails otherwise. Remember that Python's string literals also use a backslash followed by numbers to allow including arbitrary characters in a string, so be sure to use a raw string when incorporating backreferences in a RE.模 式中的逆向引用允許你指定先前捕獲組的內容,該組也必須在字符串當前位置被找到。舉個例子,如果組 1 的內容能夠在當前位置找到的話,\1 就成功否則失敗。記住 Python 字符串也是用反斜杠加數據來允許字符串中包含任意字符的,所以當在 RE 中使用逆向引用時確保使用 raw 字符串。For example, the following RE detects doubled words in a string.例如,下面的 RE 在一個字符串中找到成雙的詞。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile(r'(\b\w+)\s+\1') 2 >>> p.search('Paris in the the spring').group() 3 'the the'Backreferences like this aren't often useful for just searching through a string -- there are few text formats which repeat data in this way -- but you'll soon find out that they're very useful when performing string substitutions.象這樣只是搜索一個字符串的逆向引用并不常見 -- 用這種方式重復數據的文本格式并不多見 -- 但你不久就可以發現它們用在字符串替換上非常有用。3. Non-capturing and Named Groups(無捕獲組和命名組)Elaborate REs may use many groups, both to capture substrings of interest, and to group and structure the RE itself. In complex REs, it becomes difficult to keep track of the group numbers. There are two features which help with this problem. Both of them use a common syntax for regular expression extensions, so we'll look at that first.精心設計的 REs 也許會用很多組,既可以捕獲感興趣的子串,又可以分組和結構化 RE 本身。在復雜的 REs 里,追蹤組號變得困難。有兩個功能可以對這個問題有所幫助。它們也都使用正則表達式擴展的通用語法,因此我們來看看第一個。Perl 5 added several additional features to standard regular expressions, and the Python re module supports most of them. It would have been difficult to choose new single-keystroke metacharacters or new special sequences beginning with "\" to represent the new features without making Perl's regular expressions confusingly different from standard REs. If you chose "&" as a new metacharacter, for example, old expressions would be assuming that "&" was a regular character and wouldn't have escaped it by writing \& or [&].Perl 5 對標準正則表達式增加了幾個附加功能,Python 的 re 模塊也支持其中的大部分。選擇一個新的單按鍵元字符或一個以 "\" 開始的特殊序列來表示新的功能,而又不會使 Perl 正則表達式與標準正則表達式產生混亂是有難度的。如果你選擇 "&" 做為新的元字符,舉個例子,老的表達式認為 "&" 是一個正常的字符,而不會在使用 \& 或 [&] 時也不會轉義。The solution chosen by the Perl developers was to use (?...) as the extension syntax. "?" immediately after a parenthesis was a syntax error because the "?" would have nothing to repeat, so this didn't introduce any compatibility problems. The characters immediately after the "?" indicate what extension is being used, so (?=foo) is one thing (a positive lookahead assertion) and (?:foo) is something else (a non-capturing group containing the subexpression foo).Perl 開發人員的解決方法是使用 (?...) 來做為擴展語法。"?" 在括號后面會直接導致一個語法錯誤,因為 "?" 沒有任何字符可以重復,因此它不會產生任何兼容問題。緊隨 "?" 之后的字符指出擴展的用途,因此 (?=foo)Python adds an extension syntax to Perl's extension syntax. If the first character after the question mark is a "P", you know that it's an extension that's specific to Python. Currently there are two such extensions: (?P...) defines a named group, and (?P=name) is a backreference to a named group. If future versions of Perl 5 add similar features using a different syntax, the re module will be changed to support the new syntax, while preserving the Python-specific syntax for compatibility's sake.Python 新增了一個擴展語法到 Perl 擴展語法中。如果在問號后的第一個字符是 "P",你就可以知道它是針對 Python 的擴展。目前有兩個這樣的擴展: (?P...) 定義一個命名組,(?P=name) 則是對命名組的逆向引用。如果 Perl 5 的未來版本使用不同的語法增加了相同的功能,那么 re 模塊也將改變以支持新的語法,這是為了兼容性的目的而保持的 Python 專用語法。Now that we've looked at the general extension syntax, we can return to the features that simplify working with groups in complex REs. Since groups are numbered from left to right and a complex expression may use many groups, it can become difficult to keep track of the correct numbering, and modifying such a complex RE is annoying. Insert a new group near the beginning, and you change the numbers of everything that follows it.現在我們看一下普通的擴展語法,我們回過 頭來簡化在復雜 REs 中使用組運行的特性。因為組是從左到右編號的,而且一個復雜的表達式也許會使用許多組,它可以使跟蹤當前組號變得困難,而修改如此復雜的 RE 是十分麻煩的。在開始時插入一個新組,你可以改變它之后的每個組號。First, sometimes you'll want to use a group to collect a part of a regular expression, but aren't interested in retrieving the group's contents. You can make this fact explicit by using a non-capturing group: (?:...), where you can put any other regular expression inside the parentheses.首先,有時你想用一個組去收集正則表達式的一部分,但又對組的內容不感興趣。你可以用一個無捕獲組: (?:...) 來實現這項功能,這樣你可以在括號中發送任何其他正則表達式。Toggle line numbersToggle line numbersToggle line numbers 1 >>> m = re.match("([abc])+", "abc") 2 >>> m.groups() 3 ('c',) 4 >>> m = re.match("(?:[abc])+", "abc") 5 >>> m.groups() 6 ()Except for the fact that you can't retrieve the contents of what the group matched, a non-capturing group behaves exactly the same as a capturing group; you can put anything inside it, repeat it with a repetition metacharacter such as "*", and nest it within other groups (capturing or non-capturing). (?:...) is particularly useful when modifying an existing group, since you can add new groups without changing how all the other groups are numbered. It should be mentioned that there's no performance difference in searching between capturing and non-capturing groups; neither form is any faster than the other.除 了捕獲匹配組的內容之外,無捕獲組與捕獲組表現完全一樣;你可以在其中放置任何字符,可以用重復元字符如 "*" 來重復它,可以在其他組(無捕獲組與捕獲組)中嵌套它。(?:...) 對于修改已有組尤其有用,因為你可以不用改變所有其他組號的情況下添加一個新組。捕獲組和無捕獲組在搜索效率方面也沒什么不同,沒有哪一個比另一個更快。The second, and more significant, feature is named groups; instead of referring to them by numbers, groups can be referenced by a name.其次,更重要和強大的是命名組;與用數字指定組不同的是,它可以用名字來指定。The syntax for a named group is one of the Python-specific extensions: (?P...). name is, obviously, the name of the group. Except for associating a name with a group, named groups also behave identically to capturing groups. The MatchObject methods that deal with capturing groups all accept either integers, to refer to groups by number, or a string containing the group name. Named groups are still given numbers, so you can retrieve information about a group in two ways:命令組的語法是 Python 專用擴展之一: (?P...)。名字很明顯是組的名字。除了該組有個名字之外,命名組也同捕獲組是相同的。MatchObject 的方法處理捕獲組時接受的要么是表示組號的整數,要么是包含組名的字符串。命名組也可以是數字,所以你可以通過兩種方式來得到一個組的信息:Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile(r'(?P\b\w+\b)') 2 >>> m = p.search( '(((( Lots of punctuation )))' ) 3 >>> m.group('word') 4 'Lots' 5 >>> m.group(1) 6 'Lots'Named groups are handy because they let you use easily-remembered names, instead of having to remember numbers. Here's an example RE from the imaplib module:命名組是便于使用的,因為它可以讓你使用容易記住的名字來代替不得不記住的數字。這里有一個來自 imaplib 模塊的 RE 示例:Toggle line numbersToggle line numbersToggle line numbers 1 InternalDate = re.compile(r'INTERNALDATE "' 2 r'(?P[ 123][0-9])-(?P[A-Z][a-z][a-z])-' 3 r'(?P[0-9][0-9][0-9][0-9])' 4 r' (?P[0-9][0-9]):(?P[0-9][0-9]):(?P[0-9][0-9])' 5 r' (?P[-+])(?P[0-9][0-9])(?P[0-9][0-9])' 6 r'"')It's obviously much easier to retrieve m.group('zonem'), instead of having to remember to retrieve group 9.很明顯,得到 m.group('zonem') 要比記住得到組 9 要容易得多。Since the syntax for backreferences, in an expression like (...)\1, refers to the number of the group there's naturally a variant that uses the group name instead of the number. This is also a Python extension: (?P=name) indicates that the contents of the group called name should again be found at the current point. The regular expression for finding doubled words, (\b\w+)\s+\1 can also be written as (?P\b\w+)\s+(?P=word):因 為逆向引用的語法,象 (...)\1 這樣的表達式所表示的是組號,這時用組名代替組號自然會有差別。還有一個 Python 擴展:(?P=name) ,它可以使叫 name 的組內容再次在當前位置發現。正則表達式為了找到重復的單詞,(\b\w+)\s+\1 也可以被寫成 (?P\b\w+)\s+(?P=word):Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile(r'(?P\b\w+)\s+(?P=word)') 2 >>> p.search('Paris in the the spring').group() 3 'the the'4. Lookahead Assertions(前向界定符)Another zero-width assertion is the lookahead assertion. Lookahead assertions are available in both positive and negative form, and look like this:另一個零寬界定符(zero-width assertion)是前向界定符。前向界定符包括前向肯定界定符和后向肯定界定符,所下所示:(?=...) Positive lookahead assertion. This succeeds if the contained regular expression, represented here by ..., successfully matches at the current location, and fails otherwise. But, once the contained expression has been tried, the matching engine doesn't advance at all; the rest of the pattern is tried right where the assertion started. 前向肯定界定符。如果所含正則表達式,以 ... 表示,在當前位置成功匹配時成功,否則失敗。但一旦所含表達式已經嘗試,匹配引擎根本沒有提高;模式的剩余部分還要嘗試界定符的右邊。 (?!...) Negative lookahead assertion. This is the opposite of the positive assertion; it succeeds if the contained expression doesn't match at the current position in the string. 前向否定界定符。與肯定界定符相反;當所含表達式不能在字符串當前位置匹配時成功 An example will help make this concrete by demonstrating a case where a lookahead is useful. Consider a simple pattern to match a filename and split it apart into a base name and an extension, separated by a ".". For example, in "news.rc", "news" is the base name, and "rc" is the filename's extension.通過示范在哪前向可以成功有助于具體實現。考慮一個簡單的模式用于匹配一個文件名,并將其通過 "." 分成基本名和擴展名兩部分。如在 "news.rc" 中,"news" 是基本名,"rc" 是文件的擴展名。The pattern to match this is quite simple:匹配模式非常簡單:.*[.].*$Notice that the "." needs to be treated specially because it's a metacharacter; I've put it inside a character class. Also notice the trailing $; this is added to ensure that all the rest of the string must be included in the extension. This regular expression matches "foo.bar" and "autoexec.bat" and "sendmail.cf" and "printers.conf".注 意 "." 需要特殊對待,因為它是一個元字符;我把它放在一個字符類中。另外注意后面的 $; 添加這個是為了確保字符串所有的剩余部分必須被包含在擴展名中。這個正則表達式匹配 "foo.bar"、"autoexec.bat"、 "sendmail.cf" 和 "printers.conf"。Now, consider complicating the problem a bit; what if you want to match filenames where the extension is not "bat"? Some incorrect attempts:現在,考慮把問題變得復雜點;如果你想匹配的擴展名不是 "bat" 的文件名?一些不正確的嘗試:.*[.][^b].*$The first attempt above tries to exclude "bat" by requiring that the first character of the extension is not a "b". This is wrong, because the pattern also doesn't match "foo.bar".上面的第一次去除 "bat" 的嘗試是要求擴展名的第一個字符不是 "b"。這是錯誤的,因為該模式也不能匹配 "foo.bar"。.*[.]([^b]..|.[^a].|..[^t])$The expression gets messier when you try to patch up the first solution by requiring one of the following cases to match: the first character of the extension isn't "b"; the second character isn't "a"; or the third character isn't "t". This accepts "foo.bar" and rejects "autoexec.bat", but it requires a three-letter extension and won't accept a filename with a two-letter extension such as "sendmail.cf". We'll complicate the pattern again in an effort to fix it.當 你試著修補第一個解決方法而要求匹配下列情況之一時表達式更亂了:擴展名的第一個字符不是 "b"; 第二個字符不是 "a";或第三個字符不是 "t"。這樣可以接受 "foo.bar" 而拒絕 "autoexec.bat",但這要求只能是三個字符的擴展名而不接受兩個字符的擴展名如 "sendmail.cf"。我們將在努力修補它時再次把該模式變得復雜。.*[.]([^b].?.?|.[^a]?.?|..?[^t]?)$In the third attempt, the second and third letters are all made optional in order to allow matching extensions shorter than three characters, such as "sendmail.cf".在第三次嘗試中,第二和第三個字母都變成可選,為的是允許匹配比三個字符更短的擴展名,如 "sendmail.cf"。The pattern's getting really complicated now, which makes it hard to read and understand. Worse, if the problem changes and you want to exclude both "bat" and "exe" as extensions, the pattern would get even more complicated and confusing.該模式現在變得非常復雜,這使它很難讀懂。更糟的是,如果問題變化了,你想擴展名不是 "bat" 和 "exe",該模式甚至會變得更復雜和混亂。A negative lookahead cuts through all this:前向否定把所有這些裁剪成:.*[.](?!bat$).*$The lookahead means: if the expression bat doesn't match at this point, try the rest of the pattern; if bat$ does match, the whole pattern will fail. The trailing $ is required to ensure that something like "sample.batch", where the extension only starts with "bat", will be allowed.前向的意思:如果表達式 bat 在這里沒有匹配,嘗試模式的其余部分;如果 bat$ 匹配,整個模式將失敗。后面的 $ 被要求是為了確保象 "sample.batch" 這樣擴展名以 "bat" 開頭的會被允許。Excluding another filename extension is now easy; simply add it as an alternative inside the assertion. The following pattern excludes filenames that end in either "bat" or "exe":將另一個文件擴展名排除在外現在也容易;簡單地將其做為可選項放在界定符中。下面的這個模式將以 "bat" 或 "exe" 結尾的文件名排除在外。.*[.](?!bat$|exe$).*$Modifying Strings(修改字符串)Up to this point, we've simply performed searches against a static string. Regular expressions are also commonly used to modify a string in various ways, using the following RegexObject methods:到目前為止,我們簡單地搜索了一個靜態字符串。正則表達式通常也用不同的方式,通過下面的 RegexObject 方法,來修改字符串。Method/Attribute(方法/屬性)Purpose(作用)split()Split the string into a list, splitting it wherever the RE matches將字符串在 RE 匹配的地方分片并生成一個列表,sub()Find all substrings where the RE matches, and replace them with a different string找到 RE 匹配的所有子串,并將其用一個不同的字符串替換subn()Does the same thing as sub(), but returns the new string and the number of replacements與 sub() 相同,但返回新的字符串和替換次數1. Splitting Strings(將字符串分片)The split() method of a RegexObject splits a string apart wherever the RE matches, returning a list of the pieces. It's similar to the split() method of strings but provides much more generality in the delimiters that you can split by; split() only supports splitting by whitespace or by a fixed string. As you'd expect, there's a module-level re.split() function, too.RegexObject 的 split() 方法在 RE 匹配的地方將字符串分片,將返回列表。它同字符串的 split() 方法相似但提供更多的定界符;split()只支持空白符和固定字符串。就象你預料的那樣,也有一個模塊級的 re.split() 函數。split(string [, maxsplit = 0]) Split string by the matches of the regular expression. If capturing parentheses are used in the RE, then their contents will also be returned as part of the resulting list. If maxsplit is nonzero, at most maxsplit splits are performed. 通過正則表達式將字符串分片。如果捕獲括號在 RE 中使用,那么它們的內容也會作為結果列表的一部分返回。如果 maxsplit 非零,那么最多只能分出 maxsplit 個分片。 You can limit the number of splits made, by passing a value for maxsplit. When maxsplit is nonzero, at most maxsplit splits will be made, and the remainder of the string is returned as the final element of the list. In the following example, the delimiter is any sequence of non-alphanumeric characters.你可以通過設置 maxsplit 值來限制分片數。當 maxsplit 非零時,最多只能有 maxsplit 個分片,字符串的其余部分被做為列表的最后部分返回。在下面的例子中,定界符可以是非數字字母字符的任意序列。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile(r'\W+') 2 >>> p.split('This is a test, short and sweet, of split().') 3 ['This', 'is', 'a', 'test', 'short', 'and', 'sweet', 'of', 'split', ''] 4 >>> p.split('This is a test, short and sweet, of split().', 3) 5 ['This', 'is', 'a', 'test, short and sweet, of split().']Sometimes you're not only interested in what the text between delimiters is, but also need to know what the delimiter was. If capturing parentheses are used in the RE, then their values are also returned as part of the list. Compare the following calls:有時,你不僅對定界符之間的文本感興趣,也需要知道定界符是什么。如果捕獲括號在 RE 中使用,那么它們的值也會當作列表的一部分返回。比較下面的調用:Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile(r'\W+') 2 >>> p2 = re.compile(r'(\W+)') 3 >>> p.split('This... is a test.') 4 ['This', 'is', 'a', 'test', ''] 5 >>> p2.split('This... is a test.') 6 ['This', '... ', 'is', ' ', 'a', ' ', 'test', '.', '']The module-level function re.split() adds the RE to be used as the first argument, but is otherwise the same.模塊級函數 re.split() 將 RE 作為第一個參數,其他一樣。Toggle line numbersToggle line numbersToggle line numbers 1 >>> re.split('[\W]+', 'Words, words, words.') 2 ['Words', 'words', 'words', ''] 3 >>> re.split('([\W]+)', 'Words, words, words.') 4 ['Words', ', ', 'words', ', ', 'words', '.', ''] 5 >>> re.split('[\W]+', 'Words, words, words.', 1) 6 ['Words', 'words, words.']2. Search and Replace(搜索和替換)Another common task is to find all the matches for a pattern, and replace them with a different string. The sub() method takes a replacement value, which can be either a string or a function, and the string to be processed.其他常見的用途就是找到所有模式匹配的字符串并用不同的字符串來替換它們。sub() 方法提供一個替換值,可以是字符串或一個函數,和一個要被處理的字符串。sub(replacement, string[, count = 0]) Returns the string obtained by replacing the leftmost non-overlapping occurrences of the RE in string by the replacement replacement. If the pattern isn't found, string is returned unchanged. 返回的字符串是在字符串中用 RE 最左邊不重復的匹配來替換。如果模式沒有發現,字符將被沒有改變地返回。 The optional argument count is the maximum number of pattern occurrences to be replaced; count must be a non-negative integer. The default value of 0 means to replace all occurrences. 可選參數 count 是模式匹配后替換的最大次數;count 必須是非負整數。缺省值是 0 表示替換所有的匹配。 Here's a simple example of using the sub() method. It replaces colour names with the word "colour":這里有個使用 sub() 方法的簡單例子。它用單詞 "colour" 替換顏色名。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile( '(blue|white|red)') 2 >>> p.sub( 'colour', 'blue socks and red shoes') 3 'colour socks and colour shoes' 4 >>> p.sub( 'colour', 'blue socks and red shoes', count=1) 5 'colour socks and red shoes'The subn() method does the same work, but returns a 2-tuple containing the new string value and the number of replacements that were performed:subn() 方法作用一樣,但返回的是包含新字符串和替換執行次數的兩元組。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile( '(blue|white|red)') 2 >>> p.subn( 'colour', 'blue socks and red shoes') 3 ('colour socks and colour shoes', 2) 4 >>> p.subn( 'colour', 'no colours at all') 5 ('no colours at all', 0)Empty matches are replaced only when they're not adjacent to a previous match.空匹配只有在它們沒有緊挨著前一個匹配時才會被替換掉。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('x*') 2 >>> p.sub('-', 'abxd') 3 '-a-b-d-'If replacement is a string, any backslash escapes in it are processed. That is, "\n" is converted to a single newline character, "\r" is converted to a carriage return, and so forth. Unknown escapes such as "\j" are left alone. Backreferences, such as "\6", are replaced with the substring matched by the corresponding group in the RE. This lets you incorporate portions of the original text in the resulting replacement string.如果替 換的是一個字符串,任何在其中的反斜杠都會被處理。"\n" 將會被轉換成一個換行符,"\r"轉換成回車等等。未知的轉義如 "\j" 是 left alone。逆向引用,如 "\6",被 RE 中相應的組匹配而被子串替換。這使你可以在替換后的字符串中插入原始文本的一部分。This example matches the word "section" followed by a string enclosed in "{", "}", and changes "section" to "subsection":這個例子匹配被 "{" 和 "}" 括起來的單詞 "section",并將 "section" 替換成 "subsection"。Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('section{ ( [^}]* ) }', re.VERBOSE) 2 >>> p.sub(r'subsection{\1}','section{First} section{second}') 3 'subsection{First} subsection{second}'There's also a syntax for referring to named groups as defined by the (?P...) syntax. "\g" will use the substring matched by the group named "name", and "\g" uses the corresponding group number. "\g<2>" is therefore equivalent to "\2", but isn't ambiguous in a replacement string such as "\g<2>0". ("\20" would be interpreted as a reference to group 20, not a reference to group 2 followed by the literal character "0".) The following substitutions are all equivalent, but use all three variations of the replacement string.還 可以指定用 (?P...) 語法定義的命名組。"\g" 將通過組名 "name" 用子串來匹配,并且 "\g" 使用相應的組號。所以 "\g<2>" 等于 "\2",但能在替換字符串里含義不清,如 "\g<2>0"。("\20" 被解釋成對組 20 的引用,而不是對后面跟著一個字母 "0" 的組 2 的引用。)Toggle line numbersToggle line numbersToggle line numbers 1 >>> p = re.compile('section{ (?P [^}]* ) }', re.VERBOSE) 2 >>> p.sub(r'subsection{\1}','section{First}') 3 'subsection{First}' 4 >>> p.sub(r'subsection{\g<1>}','section{First}') 5 'subsection{First}' 6 >>> p.sub(r'subsection{\g}','section{First}') 7 'subsection{First}'replacement can also be a function, which gives you even more control. If replacement is a function, the function is called for every non-overlapping occurrence of pattern. On each call, the function is passed a MatchObject argument for the match and can use this information to compute the desired replacement string and return it.替換也可以是一個甚至給你更多控制的函數。如果替換是個函數,該函數將會被模式中每一個不重復的匹配所調用。在每個調用時,函數被作為 MatchObject 的匹配函屬,并可以使用這個信息去計算預期的字符串并返回它。In the following example, the replacement function translates decimals into hexadecimal:在下面的例子里,替換函數將十進制翻譯成十六進制:Toggle line numbersToggle line numbersToggle line numbers 1 >>> def hexrepl( match ): 2 ... "Return the hex string for a decimal number" 3 ... value = int( match.group() ) 4 ... return hex(value) 5 ... 6 >>> p = re.compile(r'\d+') 7 >>> p.sub(hexrepl, 'Call 65490 for printing, 49152 for user code.') 8 'Call 0xffd2 for printing, 0xc000 for user code.'When using the module-level re.sub() function, the pattern is passed as the first argument. The pattern may be a string or a RegexObject; if you need to specify regular expression flags, you must either use a RegexObject as the first parameter, or use embedded modifiers in the pattern, e.g. sub("(?i)b+", "x", "bbbb BBBB") returns 'x x'.當使用模塊級的 re.sub() 函數時,模式作為第一個參數。模式也許是一個字符串或一個 RegexObject;如果你需要指定正則表達式標志,你必須要么使用 RegexObject 做第一個參數,或用使用模式內嵌修正器,如 sub("(?i)b+", "x", "bbbb BBBB") returns 'x x'。Common Problems(常見問題)Regular expressions are a powerful tool for some applications, but in some ways their behaviour isn't intuitive and at times they don't behave the way you may expect them to. This section will point out some of the most common pitfalls.正則表達式對一些應用程序來說是一個強大的工具,但在有些時候它并不直觀而且有時它們不按你期望的運行。本節將指出一些最容易犯的常見錯誤。1. Use String Methods(使用字符串方式)Sometimes using the re module is a mistake. If you're matching a fixed string, or a single character class, and you're not using any re features such as the IGNORECASE flag, then the full power of regular expressions may not be required. Strings have several methods for performing operations with fixed strings and they're usually much faster, because the implementation is a single small C loop that's been optimized for the purpose, instead of the large, more generalized regular expression engine.有時使用 re 模塊是個錯誤。如果你匹配一個固定的字符串或單個的字符類,并且你沒有使用 re 的任何象 IGNORECASE 標志的功能,那么就沒有必要使用正則表達式了。字符串有一些方法是對固定字符串進行操作的,它們通??旌芏?#xff0c;因為都是一個個經過優化的C 小循環,用以代替大的、更具通用性的正則表達式引擎。One example might be replacing a single fixed string with another one; for example, you might replace "word" with "deed". re.sub() seems like the function to use for this, but consider the replace() method. Note that replace() will also replace "word" inside words, turning "swordfish" into "sdeedfish", but the na?ve RE word would have done that, too. (To avoid performing the substitution on parts of words, the pattern would have to be \bword\b, in order to require that "word" have a word boundary on either side. This takes the job beyond replace's abilities.)舉個用一個固定字符串替 換另一個的例子;如,你可以把 "deed" 替換成 "word"。re.sub() seems like the function to use for this, but consider the replace() method. 注意 replace() 也可以在單詞里面進行替換,可以把 "swordfish" 變成 "sdeedfish",不過 RE 也是可以做到的。(為了避免替換單詞的一部分,模式將寫成 \bword\b,這是為了要求 "word" 兩邊有一個單詞邊界。這是個超出替換能力的工作)。Another common task is deleting every occurrence of a single character from a string or replacing it with another single character. You might do this with something like re.sub('\n', ' ', S), but translate() is capable of doing both tasks and will be faster that any regular expression operation can be.另一個常見任務是從一個字符串中刪除單個字符或用另一個字符來替代它。你也許可以用象 re.sub('\n',' ',S) 這樣來實現,但 translate() 能夠實現這兩個任務,而且比任何正則表達式操作起來更快。In short, before turning to the re module, consider whether your problem can be solved with a faster and simpler string method.總之,在使用 re 模塊之前,先考慮一下你的問題是否可以用更快、更簡單的字符串方法來解決。2. match() versus search()(match() vs search())The match() function only checks if the RE matches at the beginning of the string while search() will scan forward through the string for a match. It's important to keep this distinction in mind. Remember, match() will only report a successful match which will start at 0; if the match wouldn't start at zero, match() will not report it.match() 函數只檢查 RE 是否在字符串開始處匹配,而 search() 則是掃描整個字符串。記住這一區別是重要的。記住,match() 只報告一次成功的匹配,它將從 0 處開始;如果匹配不是從 0 開始的,match() 將不會報告它。Toggle line numbersToggle line numbersToggle line numbers 1 >>> print re.match('super', 'superstition').span() 2 (0, 5) 3 >>> print re.match('super', 'insuperable') 4 NoneOn the other hand, search() will scan forward through the string, reporting the first match it finds.另一方面,search() 將掃描整個字符串,并報告它找到的第一個匹配。Toggle line numbersToggle line numbersToggle line numbers 1 >>> print re.search('super', 'superstition').span() 2 (0, 5) 3 >>> print re.search('super', 'insuperable').span() 4 (2, 7)Sometimes you'll be tempted to keep using re.match(), and just add .* to the front of your RE. Resist this temptation and use re.search() instead. The regular expression compiler does some analysis of REs in order to speed up the process of looking for a match. One such analysis figures out what the first character of a match must be; for example, a pattern starting with Crow must match starting with a "C". The analysis lets the engine quickly scan through the string looking for the starting character, only trying the full match if a "C" is found.有 時你可能傾向于使用 re.match(),只在RE的前面部分添加 .* 。請盡量不要這么做,最好采用 re.search() 代替之。正則表達式編譯器會對 REs 做一些分析以便可以在查找匹配時提高處理速度。一個那樣的分析機會指出匹配的第一個字符是什么;舉個例子,模式 Crow 必須從 "C" 開始匹配。分析機可以讓引擎快速掃描字符串以找到開始字符,并只在 "C" 被發現后才開始全部匹配。Adding .* defeats this optimization, requiring scanning to the end of the string and then backtracking to find a match for the rest of the RE. Use re.search() instead.添加 .* 會使這個優化失敗,這就要掃描到字符串尾部,然后回溯以找到 RE 剩余部分的匹配。使用 re.search() 代替。3. Greedy versus Non-Greedy(貪婪 vs 不貪婪)When repeating a regular expression, as in a*, the resulting action is to consume as much of the pattern as possible. This fact often bites you when you're trying to match a pair of balanced delimiters, such as the angle brackets surrounding an HTML tag. The na?ve pattern for matching a single HTML tag doesn't work because of the greedy nature of .*.當重復一個正則表達式時,如用 a*,操作結果是盡可能多地匹配模式。當你試著匹配一對對稱的定界符,如 HTML 標志中的尖括號時這個事實經常困擾你。匹配單個 HTML 標志的模式不能正常工作,因為 .* 的本質是“貪婪”的Toggle line numbersToggle line numbersToggle line numbers 1 >>> s = '' 2 >>> len(s) 3 32 4 >>> print re.match('<.*>', s).span() 5 (0, 32) 6 >>> print re.match('<.*>', s).group() 7 The RE matches the "<" in "", and the .* consumes the rest of the string. There's still more left in the RE, though, and the > can't match at the end of the string, so the regular expression engine has to backtrack character by character until it finds a match for the >. The final match extends from the "<" in ""to the ">" in "", which isn't what you want.RE 匹配 在 "" 中的 "<",.* 消耗掉子符串的剩余部分。在 RE 中保持更多的左,雖然 > 不能匹配在字符串結尾,因此正則表達式必須一個字符一個字符地回溯,直到它找到 > 的匹配。最終的匹配從 "<html" 中的 "<" 到 "" 中的 ">",這并不是你所想要的結果。In this case, the solution is to use the non-greedy qualifiers *?, +?, ??, or {m,n}?, which match as little text as possible. In the above example, the ">" is tried immediately after the first "<" matches, and when it fails, the engine advances a character at a time, retrying the ">" at every step. This produces just the right result:在這種情況下,解決方案是使用不貪婪的限定符 *?、+?、?? 或 {m,n}?,盡可能匹配小的文本。在上面的例子里, ">" 在第一個 "<" 之后被立即嘗試,當它失敗時,引擎一次增加一個字符,并在每步重試 ">"。這個處理將得到正確的結果:Toggle line numbersToggle line numbersToggle line numbers 1 >>> print re.match('<.*?>', s).group() 2 (Note that parsing HTML or XML with regular expressions is painful. Quick-and-dirty patterns will handle common cases, but HTML and XML have special cases that will break the obvious regular expression; by the time you've written a regular expression that handles all of the possible cases, the patterns will be very complicated. Use an HTML or XML parser module for such tasks.)(注 意用正則表達式分析 HTML 或 XML 是痛苦的。變化混亂的模式將處理常見情況,但 HTML 和 XML 則是明顯會打破正則表達式的特殊情況;當你編寫一個正則表達式去處理所有可能的情況時,模式將變得非常復雜。象這樣的任務用 HTML 或 XML 解析器。4. Not Using re.VERBOSE(不用 re.VERBOSE)By now you've probably noticed that regular expressions are a very compact notation, but they're not terribly readable. REs of moderate complexity can become lengthy collections of backslashes, parentheses, and metacharacters, making them difficult to read and understand.現在你可能注意到正則表達式的表示是十分緊湊,但它們非常不好讀。中度復雜的 REs 可以變成反斜杠、圓括號和元字符的長長集合,以致于使它們很難讀懂。For such REs, specifying the re.VERBOSE flag when compiling the regular expression can be helpful, because it allows you to format the regular expression more clearly.在這些 REs 中,當編譯正則表達式時指定 re.VERBOSE 標志是有幫助的,因為它允許你可以編輯正則表達式的格式使之更清楚。The re.VERBOSE flag has several effects. Whitespace in the regular expression that isn't inside a character class is ignored. This means that an expression such as dog | cat is equivalent to the less readable dog|cat, but [a b] will still match the characters "a", "b", or a space. In addition, you can also put comments inside a RE; comments extend from a "#" character to the next newline. When used with triple-quoted strings, this enables REs to be formatted more neatly:re.VERBOSE 標志有這么幾個作用。在正則表達式中不在字符類中的空白符被忽略。這就意味著象 dog | cat 這樣的表達式和可讀性差的 dog|cat 相同,但 [a b] 將匹配字符 "a"、"b" 或 空格。另外,你也可以把注釋放到 RE 中;注釋是從 "#" 到下一行。當使用三引號字符串時,可以使 REs 格式更加干凈:Toggle line numbersToggle line numbersToggle line numbers 1 pat = re.compile(r""" 2 \s* # Skip leading whitespace 3 (?P[^:]+) # Header name 4 \s* : # Whitespace, and a colon 5 (?P.*?) # The header's value -- *? used to 6 # lose the following trailing whitespace 7 \s*$ # Trailing whitespace to end-of-line 8 """, re.VERBOSE)This is far more readable than:這個要難讀得多:Toggle line numbersToggle line numbersToggle line numbers 1 pat = re.compile(r"\s*(?P[^:]+)\s*:(?P.*?)\s*$")

總結

以上是生活随笔為你收集整理的python re的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

中文无码伦av中文字幕 | 伊人久久大香线蕉午夜 | 欧美激情综合亚洲一二区 | 大地资源网第二页免费观看 | 无码毛片视频一区二区本码 | 成人免费无码大片a毛片 | 精品厕所偷拍各类美女tp嘘嘘 | 国产明星裸体无码xxxx视频 | 久久综合狠狠综合久久综合88 | 国产日产欧产精品精品app | 99久久99久久免费精品蜜桃 | 亚洲伊人久久精品影院 | 久久精品99久久香蕉国产色戒 | 三上悠亚人妻中文字幕在线 | 久久久久免费精品国产 | 熟妇激情内射com | 精品国产一区av天美传媒 | 亚洲精品一区二区三区四区五区 | 日韩精品无码一本二本三本色 | 最近的中文字幕在线看视频 | 国产精品爱久久久久久久 | 精品一区二区三区无码免费视频 | 2020久久超碰国产精品最新 | 日欧一片内射va在线影院 | v一区无码内射国产 | 亚洲成熟女人毛毛耸耸多 | 国产亚洲欧美日韩亚洲中文色 | 欧美日韩一区二区综合 | 亚洲自偷精品视频自拍 | 日本va欧美va欧美va精品 | 成人动漫在线观看 | 激情五月综合色婷婷一区二区 | 精品成人av一区二区三区 | 久久www免费人成人片 | 动漫av一区二区在线观看 | 日本免费一区二区三区最新 | 久久精品国产一区二区三区 | 九月婷婷人人澡人人添人人爽 | 久久久av男人的天堂 | 影音先锋中文字幕无码 | 成人影院yy111111在线观看 | 亚洲国产精品久久久天堂 | 成人无码精品一区二区三区 | 蜜桃臀无码内射一区二区三区 | 久在线观看福利视频 | 十八禁视频网站在线观看 | 国产精品欧美成人 | 午夜理论片yy44880影院 | 人妻有码中文字幕在线 | 国产精品久久久一区二区三区 | aa片在线观看视频在线播放 | 亚洲中文字幕乱码av波多ji | 午夜精品久久久久久久久 | 四虎国产精品免费久久 | 成人无码精品一区二区三区 | 欧美人与物videos另类 | 欧美熟妇另类久久久久久不卡 | 国产尤物精品视频 | 国产精品视频免费播放 | 无码帝国www无码专区色综合 | 久久国产36精品色熟妇 | 999久久久国产精品消防器材 | 丰满少妇熟乱xxxxx视频 | 亚洲国精产品一二二线 | 国产精品人妻一区二区三区四 | 对白脏话肉麻粗话av | 亚洲国产av美女网站 | 国产乱码精品一品二品 | 国产成人综合色在线观看网站 | 久久成人a毛片免费观看网站 | 亚洲欧洲中文日韩av乱码 | 天堂а√在线地址中文在线 | 成人欧美一区二区三区 | 亚洲精品中文字幕久久久久 | 午夜熟女插插xx免费视频 | 久久久精品人妻久久影视 | 亚洲精品美女久久久久久久 | 国产亚洲美女精品久久久2020 | 久久精品人人做人人综合 | 免费看少妇作爱视频 | 欧美xxxx黑人又粗又长 | 一本精品99久久精品77 | 99久久婷婷国产综合精品青草免费 | 在线看片无码永久免费视频 | 国产无遮挡又黄又爽又色 | 国产亚av手机在线观看 | 精品久久久久久人妻无码中文字幕 | 欧洲美熟女乱又伦 | 亚洲国产精品美女久久久久 | 男人的天堂av网站 | 精品国产麻豆免费人成网站 | 国产成人无码区免费内射一片色欲 | a片在线免费观看 | 十八禁真人啪啪免费网站 | 伊人色综合久久天天小片 | 丁香花在线影院观看在线播放 | 大色综合色综合网站 | 久久aⅴ免费观看 | 国产在线精品一区二区高清不卡 | 无套内谢的新婚少妇国语播放 | 亚洲狠狠色丁香婷婷综合 | 欧美freesex黑人又粗又大 | 亚洲国产午夜精品理论片 | 国产电影无码午夜在线播放 | 国产精品人妻一区二区三区四 | 亚洲人成网站免费播放 | 性生交大片免费看女人按摩摩 | 亚洲精品一区国产 | 亚洲一区二区三区在线观看网站 | 色狠狠av一区二区三区 | 亚洲中文字幕乱码av波多ji | 东北女人啪啪对白 | 亚洲国产精品无码久久久久高潮 | 免费观看的无遮挡av | 国产精品人人妻人人爽 | 久精品国产欧美亚洲色aⅴ大片 | 97se亚洲精品一区 | 午夜无码区在线观看 | 国产人妻精品一区二区三区不卡 | 亚洲中文字幕成人无码 | 国产成人精品优优av | 亚洲精品成人av在线 | 色婷婷久久一区二区三区麻豆 | 无码人妻久久一区二区三区不卡 | 四十如虎的丰满熟妇啪啪 | 中文字幕+乱码+中文字幕一区 | 精品国产aⅴ无码一区二区 | 久久zyz资源站无码中文动漫 | 午夜嘿嘿嘿影院 | 人人爽人人爽人人片av亚洲 | 成年美女黄网站色大免费全看 | 欧美三级不卡在线观看 | 国产凸凹视频一区二区 | 人妻有码中文字幕在线 | 国产精品自产拍在线观看 | 亚洲人成影院在线观看 | 久久天天躁狠狠躁夜夜免费观看 | 亚洲国产一区二区三区在线观看 | 国产凸凹视频一区二区 | 成人精品天堂一区二区三区 | 国产一精品一av一免费 | 精品久久综合1区2区3区激情 | 国产人妻久久精品二区三区老狼 | 午夜福利一区二区三区在线观看 | 国产精品va在线播放 | 丰满少妇弄高潮了www | 亚洲国产成人av在线观看 | 99麻豆久久久国产精品免费 | 久久午夜无码鲁丝片午夜精品 | 荡女精品导航 | yw尤物av无码国产在线观看 | 67194成是人免费无码 | 最近的中文字幕在线看视频 | 国产精品久久久久久久影院 | 亚洲综合无码一区二区三区 | 2020久久超碰国产精品最新 | 亚洲天堂2017无码中文 | 两性色午夜免费视频 | 波多野结衣 黑人 | 亚洲中文字幕在线无码一区二区 | 亚洲国产精品一区二区美利坚 | 高潮毛片无遮挡高清免费 | 青草青草久热国产精品 | 精品人妻中文字幕有码在线 | 国产av一区二区精品久久凹凸 | 午夜精品一区二区三区在线观看 | 欧美熟妇另类久久久久久不卡 | 日韩欧美中文字幕公布 | 亚洲欧美综合区丁香五月小说 | 99精品国产综合久久久久五月天 | 黑人玩弄人妻中文在线 | 色综合久久久久综合一本到桃花网 | 亚洲一区二区三区在线观看网站 | 亚洲精品久久久久久久久久久 | 国产特级毛片aaaaaaa高清 | 99久久精品午夜一区二区 | 麻豆成人精品国产免费 | 国产在线aaa片一区二区99 | 人妻中文无码久热丝袜 | 久久久久久九九精品久 | aⅴ亚洲 日韩 色 图网站 播放 | 国产精品高潮呻吟av久久 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 鲁一鲁av2019在线 | 亚洲综合久久一区二区 | 无码精品人妻一区二区三区av | 国产九九九九九九九a片 | 国产激情精品一区二区三区 | 国产农村妇女高潮大叫 | 国产精品办公室沙发 | 亚洲国产精品无码一区二区三区 | 亚洲va中文字幕无码久久不卡 | 男女下面进入的视频免费午夜 | 国产又爽又黄又刺激的视频 | 久久www免费人成人片 | а√天堂www在线天堂小说 | 日本精品少妇一区二区三区 | av人摸人人人澡人人超碰下载 | 婷婷丁香五月天综合东京热 | 日韩亚洲欧美精品综合 | 国产精品免费大片 | 久久久久久久久888 | 国产另类ts人妖一区二区 | 奇米影视888欧美在线观看 | 丰腴饱满的极品熟妇 | 亚洲精品www久久久 | 成人性做爰aaa片免费看不忠 | 中文精品无码中文字幕无码专区 | 成人综合网亚洲伊人 | 亚洲熟妇色xxxxx亚洲 | 国产精品第一国产精品 | 国精品人妻无码一区二区三区蜜柚 | 亚洲一区二区三区含羞草 | 少妇高潮一区二区三区99 | 少妇无码av无码专区在线观看 | 97久久超碰中文字幕 | 人妻少妇被猛烈进入中文字幕 | 色诱久久久久综合网ywww | 无码人妻出轨黑人中文字幕 | 丰满少妇女裸体bbw | 国产亚洲视频中文字幕97精品 | 图片小说视频一区二区 | 欧美喷潮久久久xxxxx | 色综合天天综合狠狠爱 | 国产超碰人人爽人人做人人添 | 色婷婷香蕉在线一区二区 | 鲁大师影院在线观看 | 国产电影无码午夜在线播放 | 永久免费观看美女裸体的网站 | 久久综合给久久狠狠97色 | 国产97色在线 | 免 | 欧美xxxxx精品 | 色 综合 欧美 亚洲 国产 | 日本爽爽爽爽爽爽在线观看免 | 丰满少妇弄高潮了www | 亚洲国产成人a精品不卡在线 | 水蜜桃av无码 | 亚洲成av人片在线观看无码不卡 | 久久无码中文字幕免费影院蜜桃 | 性做久久久久久久免费看 | 国产 浪潮av性色四虎 | 乱人伦人妻中文字幕无码久久网 | 久久久久久国产精品无码下载 | 久久久国产精品无码免费专区 | 两性色午夜视频免费播放 | 无码毛片视频一区二区本码 | 国产国产精品人在线视 | 99久久精品国产一区二区蜜芽 | 国产人妻久久精品二区三区老狼 | 欧美怡红院免费全部视频 | 国产亚洲人成a在线v网站 | 国产精品亚洲综合色区韩国 | 人妻无码αv中文字幕久久琪琪布 | 久久久久久a亚洲欧洲av冫 | 鲁鲁鲁爽爽爽在线视频观看 | 中文字幕乱码中文乱码51精品 | 亚洲精品欧美二区三区中文字幕 | 精品久久久久久亚洲精品 | 日本又色又爽又黄的a片18禁 | 欧美性猛交内射兽交老熟妇 | 丝袜 中出 制服 人妻 美腿 | 毛片内射-百度 | 精品人妻中文字幕有码在线 | 亚洲色大成网站www国产 | 中文字幕日韩精品一区二区三区 | 曰本女人与公拘交酡免费视频 | 纯爱无遮挡h肉动漫在线播放 | 久久99久久99精品中文字幕 | 亚洲日韩av一区二区三区四区 | 亚洲最大成人网站 | 久久精品中文字幕一区 | 欧美日韩视频无码一区二区三 | 久久精品视频在线看15 | 亚洲精品中文字幕久久久久 | 一本久道久久综合婷婷五月 | 沈阳熟女露脸对白视频 | 国产舌乚八伦偷品w中 | 荡女精品导航 | 久久久久久久久888 | 国产 浪潮av性色四虎 | 日本一区二区三区免费播放 | 中文精品无码中文字幕无码专区 | 精品国精品国产自在久国产87 | 国产深夜福利视频在线 | 亚洲阿v天堂在线 | 国产精品第一区揄拍无码 | 中文字幕无码免费久久99 | 亚洲国产欧美日韩精品一区二区三区 | 国产精品久久国产精品99 | √天堂资源地址中文在线 | 国产电影无码午夜在线播放 | 国产综合久久久久鬼色 | 67194成是人免费无码 | 免费国产成人高清在线观看网站 | 免费观看的无遮挡av | 免费人成在线观看网站 | 国产熟女一区二区三区四区五区 | 亚洲欧美中文字幕5发布 | 国产猛烈高潮尖叫视频免费 | 精品国产一区二区三区四区 | 亚洲国产成人a精品不卡在线 | 天堂一区人妻无码 | 国产亚洲美女精品久久久2020 | 日日夜夜撸啊撸 | 未满成年国产在线观看 | 国产无遮挡又黄又爽免费视频 | 无码国模国产在线观看 | 又粗又大又硬毛片免费看 | 香港三级日本三级妇三级 | 久久婷婷五月综合色国产香蕉 | 日本饥渴人妻欲求不满 | 国产特级毛片aaaaaa高潮流水 | 无码人妻丰满熟妇区五十路百度 | 欧美性黑人极品hd | 久久久精品国产sm最大网站 | 少女韩国电视剧在线观看完整 | 成人欧美一区二区三区黑人 | 成熟女人特级毛片www免费 | 国产亚洲人成a在线v网站 | 国产精品美女久久久 | 美女极度色诱视频国产 | 日本饥渴人妻欲求不满 | 激情亚洲一区国产精品 | 中文字幕人妻无码一区二区三区 | 激情爆乳一区二区三区 | 国产成人一区二区三区在线观看 | 中文字幕人妻无码一区二区三区 | 国产一区二区不卡老阿姨 | 丰满护士巨好爽好大乳 | 国产精品高潮呻吟av久久 | 天堂亚洲免费视频 | 日产精品高潮呻吟av久久 | 亚洲成av人影院在线观看 | 蜜臀aⅴ国产精品久久久国产老师 | 欧美日韩久久久精品a片 | 无遮无挡爽爽免费视频 | 无码av最新清无码专区吞精 | 狂野欧美性猛交免费视频 | 国内精品人妻无码久久久影院蜜桃 | 精品欧美一区二区三区久久久 | 国产网红无码精品视频 | aⅴ亚洲 日韩 色 图网站 播放 | 中文字幕+乱码+中文字幕一区 | 久久zyz资源站无码中文动漫 | 1000部啪啪未满十八勿入下载 | 国产熟女一区二区三区四区五区 | 欧美喷潮久久久xxxxx | 久久久久久久人妻无码中文字幕爆 | 亚洲男人av香蕉爽爽爽爽 | 国产偷国产偷精品高清尤物 | 国产精品久久久久久久9999 | 一本色道久久综合亚洲精品不卡 | 福利一区二区三区视频在线观看 | 国产日产欧产精品精品app | 亚洲成a人片在线观看日本 | 久久人人97超碰a片精品 | 久久97精品久久久久久久不卡 | 亚洲gv猛男gv无码男同 | 久久精品女人天堂av免费观看 | 精品国产乱码久久久久乱码 | 亚洲色无码一区二区三区 | 欧美午夜特黄aaaaaa片 | 女人色极品影院 | 亚洲乱码国产乱码精品精 | 2020最新国产自产精品 | 亚洲成a人片在线观看日本 | 无码国模国产在线观看 | 蜜桃视频插满18在线观看 | 亚洲人成人无码网www国产 | 在线精品亚洲一区二区 | 亚洲国产精品久久人人爱 | 人人妻人人澡人人爽人人精品 | 国产精品久久久久无码av色戒 | 国产午夜福利亚洲第一 | 亚洲国产欧美日韩精品一区二区三区 | 国产亚洲精品精品国产亚洲综合 | 狠狠躁日日躁夜夜躁2020 | 老子影院午夜伦不卡 | 青草青草久热国产精品 | 女人和拘做爰正片视频 | 男人的天堂2018无码 | 日日摸夜夜摸狠狠摸婷婷 | 精品厕所偷拍各类美女tp嘘嘘 | 国内精品人妻无码久久久影院蜜桃 | 99久久精品午夜一区二区 | 激情人妻另类人妻伦 | 国产麻豆精品精东影业av网站 | 国产精品亚洲一区二区三区喷水 | 欧美人与动性行为视频 | 特黄特色大片免费播放器图片 | 九月婷婷人人澡人人添人人爽 | 乱码av麻豆丝袜熟女系列 | 十八禁真人啪啪免费网站 | 精品国产国产综合精品 | 99久久人妻精品免费一区 | 中文字幕无码热在线视频 | 99久久人妻精品免费一区 | 无码人妻精品一区二区三区不卡 | 精品无人区无码乱码毛片国产 | 九月婷婷人人澡人人添人人爽 | 激情综合激情五月俺也去 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国产精品第一国产精品 | 国产在线精品一区二区高清不卡 | 国产小呦泬泬99精品 | 国产口爆吞精在线视频 | 国产精品人人妻人人爽 | 丰满人妻精品国产99aⅴ | 人妻插b视频一区二区三区 | √天堂资源地址中文在线 | 久久国产劲爆∧v内射 | 人人爽人人爽人人片av亚洲 | 成人女人看片免费视频放人 | 一本加勒比波多野结衣 | 美女极度色诱视频国产 | yw尤物av无码国产在线观看 | 久久久www成人免费毛片 | 亚洲日本va午夜在线电影 | 蜜桃臀无码内射一区二区三区 | 亚洲一区二区三区含羞草 | 乱人伦人妻中文字幕无码 | 在线视频网站www色 | 无码精品国产va在线观看dvd | 久久久精品欧美一区二区免费 | 精品厕所偷拍各类美女tp嘘嘘 | 久久久久成人精品免费播放动漫 | 国产人妻人伦精品 | 欧美精品在线观看 | 久久精品人妻少妇一区二区三区 | 亚洲成av人在线观看网址 | 亚洲精品一区二区三区四区五区 | 国产精品.xx视频.xxtv | 成人欧美一区二区三区黑人免费 | 天堂а√在线中文在线 | 精品久久久久香蕉网 | 成人一在线视频日韩国产 | 麻豆国产人妻欲求不满 | 亚洲精品美女久久久久久久 | 亚洲国产精华液网站w | 亚洲狠狠色丁香婷婷综合 | 激情爆乳一区二区三区 | 欧美成人免费全部网站 | 成人片黄网站色大片免费观看 | 黄网在线观看免费网站 | 国内少妇偷人精品视频 | 欧美老人巨大xxxx做受 | 乌克兰少妇xxxx做受 | 亚洲s色大片在线观看 | 无码吃奶揉捏奶头高潮视频 | 无码av最新清无码专区吞精 | 2020久久香蕉国产线看观看 | 极品尤物被啪到呻吟喷水 | 兔费看少妇性l交大片免费 | 欧美成人家庭影院 | 亚洲 激情 小说 另类 欧美 | 男女爱爱好爽视频免费看 | 中文字幕日产无线码一区 | 欧美第一黄网免费网站 | 精品少妇爆乳无码av无码专区 | 无套内谢老熟女 | 成人无码精品一区二区三区 | 中文毛片无遮挡高清免费 | 无码国产乱人伦偷精品视频 | 人人妻人人澡人人爽欧美精品 | 亚洲s色大片在线观看 | 99视频精品全部免费免费观看 | 成人一区二区免费视频 | 任你躁国产自任一区二区三区 | 天天躁夜夜躁狠狠是什么心态 | 国产精品99爱免费视频 | 天海翼激烈高潮到腰振不止 | 亚洲经典千人经典日产 | 国产av无码专区亚洲a∨毛片 | 啦啦啦www在线观看免费视频 | 色妞www精品免费视频 | 东京无码熟妇人妻av在线网址 | 在线视频网站www色 | 午夜时刻免费入口 | 在线观看国产一区二区三区 | 成人无码精品1区2区3区免费看 | 日韩人妻无码中文字幕视频 | 中文字幕无线码 | 伊人久久大香线蕉亚洲 | 欧洲美熟女乱又伦 | 久久久国产一区二区三区 | 无码人中文字幕 | 内射爽无广熟女亚洲 | 2019nv天堂香蕉在线观看 | 国产99久久精品一区二区 | 精品国偷自产在线 | 色五月五月丁香亚洲综合网 | 永久免费观看美女裸体的网站 | 国产激情无码一区二区app | 久久精品99久久香蕉国产色戒 | 亚洲精品综合五月久久小说 | 国产精品久免费的黄网站 | 国产两女互慰高潮视频在线观看 | aⅴ在线视频男人的天堂 | 亚洲综合久久一区二区 | 麻豆成人精品国产免费 | 国产亚洲视频中文字幕97精品 | 高清国产亚洲精品自在久久 | 少妇太爽了在线观看 | 激情内射亚州一区二区三区爱妻 | 性欧美牲交在线视频 | 久久久久成人片免费观看蜜芽 | 漂亮人妻洗澡被公强 日日躁 | 精品夜夜澡人妻无码av蜜桃 | 亚洲成a人一区二区三区 | 扒开双腿疯狂进出爽爽爽视频 | 无码一区二区三区在线观看 | 亚洲另类伦春色综合小说 | 国产乱子伦视频在线播放 | 久久精品人妻少妇一区二区三区 | 野外少妇愉情中文字幕 | 大乳丰满人妻中文字幕日本 | 丝袜足控一区二区三区 | 亚洲日韩一区二区 | 欧洲熟妇色 欧美 | 扒开双腿吃奶呻吟做受视频 | 俺去俺来也在线www色官网 | 天天av天天av天天透 | 荫蒂添的好舒服视频囗交 | 国产香蕉97碰碰久久人人 | 国产人妻久久精品二区三区老狼 | 亚洲成av人在线观看网址 | 99精品国产综合久久久久五月天 | 亚洲欧美精品伊人久久 | 国内综合精品午夜久久资源 | 午夜免费福利小电影 | 国产免费无码一区二区视频 | 无码人妻av免费一区二区三区 | 综合激情五月综合激情五月激情1 | 亚洲区小说区激情区图片区 | 天堂亚洲2017在线观看 | 理论片87福利理论电影 | 久久天天躁狠狠躁夜夜免费观看 | 四十如虎的丰满熟妇啪啪 | 国产成人无码av片在线观看不卡 | 亚洲精品综合五月久久小说 | 午夜熟女插插xx免费视频 | 丰满岳乱妇在线观看中字无码 | 久久久精品欧美一区二区免费 | 国产亚洲精品精品国产亚洲综合 | 国产人成高清在线视频99最全资源 | 精品国产青草久久久久福利 | 撕开奶罩揉吮奶头视频 | 午夜福利电影 | 国产性生交xxxxx无码 | 激情五月综合色婷婷一区二区 | 美女黄网站人色视频免费国产 | 国产97在线 | 亚洲 | 国产精品久久国产精品99 | 国产精品久久福利网站 | 人人妻人人澡人人爽欧美精品 | 亚洲日本在线电影 | 国产精品久久久久久久9999 | 国产人妻人伦精品1国产丝袜 | 乱码午夜-极国产极内射 | 国产乱人伦av在线无码 | 永久免费观看美女裸体的网站 | 亚洲欧美精品aaaaaa片 | 亚洲色在线无码国产精品不卡 | 国产成人一区二区三区在线观看 | 高潮毛片无遮挡高清免费视频 | 欧洲熟妇色 欧美 | 综合激情五月综合激情五月激情1 | 18禁止看的免费污网站 | 无码福利日韩神码福利片 | 男人和女人高潮免费网站 | 超碰97人人射妻 | 亚洲综合精品香蕉久久网 | 亚洲日韩av一区二区三区中文 | 日韩av无码中文无码电影 | 亚洲爆乳精品无码一区二区三区 | 99精品无人区乱码1区2区3区 | 无码av中文字幕免费放 | 欧美放荡的少妇 | 国产精品人人爽人人做我的可爱 | 国产日产欧产精品精品app | 无套内射视频囯产 | a国产一区二区免费入口 | 精品一区二区三区波多野结衣 | 成人亚洲精品久久久久软件 | 国产超碰人人爽人人做人人添 | 亚洲乱码日产精品bd | 宝宝好涨水快流出来免费视频 | 亚洲精品成a人在线观看 | 无码精品国产va在线观看dvd | 欧美日韩人成综合在线播放 | 日韩av激情在线观看 | 国产精品久久久久久久9999 | 色婷婷香蕉在线一区二区 | 亚洲 另类 在线 欧美 制服 | 日韩av无码一区二区三区不卡 | a片免费视频在线观看 | 久久久久成人精品免费播放动漫 | 国产精品内射视频免费 | 亚洲精品久久久久久久久久久 | 中文无码精品a∨在线观看不卡 | 2019午夜福利不卡片在线 | 成人动漫在线观看 | 狠狠色色综合网站 | а√天堂www在线天堂小说 | 亚洲综合无码久久精品综合 | 欧美精品国产综合久久 | 精品国产av色一区二区深夜久久 | 亚洲一区二区三区播放 | 精品人妻人人做人人爽 | 中文字幕无码热在线视频 | 国产乱子伦视频在线播放 | 亚洲日韩av片在线观看 | 熟妇人妻无乱码中文字幕 | 日本熟妇浓毛 | 国产午夜亚洲精品不卡下载 | 自拍偷自拍亚洲精品10p | 中文字幕无码免费久久9一区9 | 成人精品视频一区二区三区尤物 | 日韩精品无码一本二本三本色 | 台湾无码一区二区 | 性做久久久久久久久 | 日韩精品成人一区二区三区 | 精品aⅴ一区二区三区 | 偷窥村妇洗澡毛毛多 | 丰满岳乱妇在线观看中字无码 | 国产内射老熟女aaaa | 99riav国产精品视频 | 国产精品视频免费播放 | 国产精品99久久精品爆乳 | 扒开双腿吃奶呻吟做受视频 | 国产成人精品视频ⅴa片软件竹菊 | 亚洲国产精华液网站w | 亚洲中文字幕无码一久久区 | 亚洲の无码国产の无码影院 | 亚洲成色www久久网站 | 精品偷自拍另类在线观看 | 夜夜躁日日躁狠狠久久av | 国产精品成人av在线观看 | 久久久精品欧美一区二区免费 | 亚洲a无码综合a国产av中文 | 欧美日本日韩 | 国产人妻人伦精品 | 国内老熟妇对白xxxxhd | 久久视频在线观看精品 | 丰满少妇弄高潮了www | 中文毛片无遮挡高清免费 | 伊人久久大香线蕉午夜 | 久久99精品久久久久久 | 一二三四在线观看免费视频 | 樱花草在线播放免费中文 | 中文无码成人免费视频在线观看 | 人人爽人人澡人人高潮 | 亚洲综合在线一区二区三区 | 日韩人妻少妇一区二区三区 | 亚洲精品成人福利网站 | 亚洲呦女专区 | 国产精品igao视频网 | 少妇性l交大片欧洲热妇乱xxx | 日韩欧美中文字幕在线三区 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 久久久久成人精品免费播放动漫 | 天堂亚洲免费视频 | 狂野欧美性猛交免费视频 | 18禁止看的免费污网站 | 51国偷自产一区二区三区 | 国精品人妻无码一区二区三区蜜柚 | 两性色午夜免费视频 | 国产免费久久久久久无码 | 女人被爽到呻吟gif动态图视看 | 好屌草这里只有精品 | 人妻无码久久精品人妻 | 久久成人a毛片免费观看网站 | 国产成人综合美国十次 | 日韩精品a片一区二区三区妖精 | 少妇久久久久久人妻无码 | 无码毛片视频一区二区本码 | 男女超爽视频免费播放 | 国语精品一区二区三区 | 97精品国产97久久久久久免费 | 久久国产36精品色熟妇 | 亚洲欧美日韩国产精品一区二区 | 55夜色66夜色国产精品视频 | 九月婷婷人人澡人人添人人爽 | 国产av一区二区精品久久凹凸 | 中文字幕+乱码+中文字幕一区 | 人人澡人摸人人添 | 久久久久久九九精品久 | 欧美 亚洲 国产 另类 | 国产精品高潮呻吟av久久4虎 | 欧美大屁股xxxxhd黑色 | 亚洲精品成人av在线 | 少妇无码一区二区二三区 | 国产肉丝袜在线观看 | 99国产精品白浆在线观看免费 | 日韩精品无码免费一区二区三区 | 人妻少妇精品视频专区 | 午夜精品久久久久久久久 | 人妻插b视频一区二区三区 | 学生妹亚洲一区二区 | 欧美成人高清在线播放 | 日日摸天天摸爽爽狠狠97 | 人人澡人人妻人人爽人人蜜桃 | 久久亚洲a片com人成 | 日韩亚洲欧美中文高清在线 | 久久久久久av无码免费看大片 | 国产av无码专区亚洲a∨毛片 | 亚洲 日韩 欧美 成人 在线观看 | 亚洲熟妇色xxxxx欧美老妇 | 中文字幕无码视频专区 | 中国大陆精品视频xxxx | 丰满人妻一区二区三区免费视频 | 国产又爽又猛又粗的视频a片 | 人人妻人人澡人人爽欧美精品 | 久久久精品欧美一区二区免费 | 久久99久久99精品中文字幕 | 国产亚洲视频中文字幕97精品 | 国产精品怡红院永久免费 | 亚洲国产成人av在线观看 | 亚洲精品欧美二区三区中文字幕 | 内射白嫩少妇超碰 | 国精品人妻无码一区二区三区蜜柚 | 中文久久乱码一区二区 | 性欧美熟妇videofreesex | 亚洲中文字幕乱码av波多ji | 最新版天堂资源中文官网 | 亚洲色www成人永久网址 | 97夜夜澡人人爽人人喊中国片 | 日韩精品无码一本二本三本色 | 亚洲一区二区三区 | 偷窥日本少妇撒尿chinese | 久久人人爽人人爽人人片av高清 | 无码人妻少妇伦在线电影 | 久久综合给久久狠狠97色 | 欧美成人免费全部网站 | 国产精品久久久久久久9999 | 亚洲国产成人a精品不卡在线 | 亚洲一区二区观看播放 | 精品国产成人一区二区三区 | 蜜桃无码一区二区三区 | 精品欧洲av无码一区二区三区 | 国产真实伦对白全集 | 无码av中文字幕免费放 | 亚洲精品国产第一综合99久久 | 色偷偷人人澡人人爽人人模 | 久在线观看福利视频 | 日韩精品无码免费一区二区三区 | 76少妇精品导航 | 精品日本一区二区三区在线观看 | 午夜精品一区二区三区在线观看 | 欧美人与禽猛交狂配 | 牲交欧美兽交欧美 | 99久久婷婷国产综合精品青草免费 | 国产亚洲日韩欧美另类第八页 | 一区二区三区乱码在线 | 欧洲 | 激情综合激情五月俺也去 | 玩弄中年熟妇正在播放 | 亚洲欧美国产精品专区久久 | 国产免费观看黄av片 | 日韩欧美成人免费观看 | 少妇被粗大的猛进出69影院 | 日本va欧美va欧美va精品 | 欧美日韩一区二区免费视频 | 国产凸凹视频一区二区 | 少妇激情av一区二区 | 欧美乱妇无乱码大黄a片 | 国产精品久久久久久久影院 | 精品国精品国产自在久国产87 | 中文久久乱码一区二区 | 欧美老妇交乱视频在线观看 | 六十路熟妇乱子伦 | 亚洲精品久久久久中文第一幕 | 精品水蜜桃久久久久久久 | 亚洲精品久久久久中文第一幕 | 夜精品a片一区二区三区无码白浆 | 欧美成人家庭影院 | 美女扒开屁股让男人桶 | 亚洲男女内射在线播放 | 亚洲自偷精品视频自拍 | 国内揄拍国内精品人妻 | 中国女人内谢69xxxxxa片 | 樱花草在线社区www | 十八禁真人啪啪免费网站 | 国产午夜福利亚洲第一 | 国产av一区二区三区最新精品 | 水蜜桃av无码 | 色五月五月丁香亚洲综合网 | 高清不卡一区二区三区 | 在线精品亚洲一区二区 | 国产精品久久福利网站 | 久久国产精品二国产精品 | 国产片av国语在线观看 | 国产9 9在线 | 中文 | 国产绳艺sm调教室论坛 | 少妇无码吹潮 | 欧美乱妇无乱码大黄a片 | 捆绑白丝粉色jk震动捧喷白浆 | 欧美人与牲动交xxxx | 性做久久久久久久免费看 | 午夜无码区在线观看 | 麻豆国产人妻欲求不满谁演的 | 亚洲 激情 小说 另类 欧美 | 国产精品嫩草久久久久 | 国产成人无码一二三区视频 | 在线a亚洲视频播放在线观看 | 亚洲精品一区二区三区在线 | 日本精品人妻无码77777 天堂一区人妻无码 | 97资源共享在线视频 | 久久国产36精品色熟妇 | 国产精品对白交换视频 | 97久久国产亚洲精品超碰热 | 东京热一精品无码av | 日日天干夜夜狠狠爱 | 久久99精品国产麻豆蜜芽 | 丁香啪啪综合成人亚洲 | 波多野结衣高清一区二区三区 | 亚洲日韩av一区二区三区四区 | 亚洲国产精品毛片av不卡在线 | 欧美第一黄网免费网站 | 精品国产av色一区二区深夜久久 | 免费看男女做好爽好硬视频 | 少妇厨房愉情理9仑片视频 | 久久午夜无码鲁丝片 | 国产香蕉尹人综合在线观看 | 欧美人与善在线com | 国产亚洲人成a在线v网站 | 久久午夜夜伦鲁鲁片无码免费 | 精品人妻中文字幕有码在线 | 欧美日韩一区二区综合 | 亚洲小说春色综合另类 | 性啪啪chinese东北女人 | 国产精品美女久久久网av | 国产艳妇av在线观看果冻传媒 | 午夜精品一区二区三区在线观看 | 在线成人www免费观看视频 | 大地资源中文第3页 | 欧美熟妇另类久久久久久不卡 | 国产卡一卡二卡三 | 国产激情无码一区二区app | 日本肉体xxxx裸交 | 日产国产精品亚洲系列 | 中文字幕无码免费久久9一区9 | 国产香蕉97碰碰久久人人 | 熟妇人妻无乱码中文字幕 | 国产精品亚洲一区二区三区喷水 | 欧美性生交活xxxxxdddd | 97精品人妻一区二区三区香蕉 | 欧美国产日产一区二区 | 最近中文2019字幕第二页 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 亚洲国精产品一二二线 | 一本加勒比波多野结衣 | 久9re热视频这里只有精品 | 久久国产精品二国产精品 | 亚洲中文无码av永久不收费 | 久久精品中文闷骚内射 | 国产精品无码一区二区三区不卡 | 永久黄网站色视频免费直播 | 国产性生交xxxxx无码 | 高潮毛片无遮挡高清免费 | 亚洲成av人片在线观看无码不卡 | 精品国产一区av天美传媒 | 国产精品无码久久av | 对白脏话肉麻粗话av | 久久精品中文闷骚内射 | 对白脏话肉麻粗话av | 7777奇米四色成人眼影 | 国内少妇偷人精品视频免费 | 久久熟妇人妻午夜寂寞影院 | 人妻尝试又大又粗久久 | 精品欧洲av无码一区二区三区 | 3d动漫精品啪啪一区二区中 | 亚洲色欲久久久综合网东京热 | 综合人妻久久一区二区精品 | 中文字幕 亚洲精品 第1页 | 午夜福利试看120秒体验区 | 少妇邻居内射在线 | 人妻与老人中文字幕 | 亚洲精品国产品国语在线观看 | 一本久道久久综合婷婷五月 | 久久精品国产日本波多野结衣 | 天堂久久天堂av色综合 | 九九综合va免费看 | 欧美阿v高清资源不卡在线播放 | 亚洲欧美国产精品久久 | 国产黄在线观看免费观看不卡 | 久久久久久av无码免费看大片 | 天天爽夜夜爽夜夜爽 | 日韩精品无码一区二区中文字幕 | 精品国偷自产在线视频 | 欧美日韩一区二区三区自拍 | 麻花豆传媒剧国产免费mv在线 | 国产两女互慰高潮视频在线观看 | 成在人线av无码免费 | 亚洲日韩中文字幕在线播放 | 无套内射视频囯产 | 九一九色国产 | 清纯唯美经典一区二区 | 老熟妇仑乱视频一区二区 | 日本精品久久久久中文字幕 | 一本一道久久综合久久 | 97资源共享在线视频 | 欧美zoozzooz性欧美 | 少女韩国电视剧在线观看完整 | 扒开双腿疯狂进出爽爽爽视频 | 乱码av麻豆丝袜熟女系列 | 国产超级va在线观看视频 | 欧美丰满老熟妇xxxxx性 | 在线观看欧美一区二区三区 | 国语自产偷拍精品视频偷 | 最近免费中文字幕中文高清百度 | 少妇被粗大的猛进出69影院 | 国产精品亚洲综合色区韩国 | 日日摸天天摸爽爽狠狠97 | 亚洲精品一区二区三区婷婷月 | 性色欲网站人妻丰满中文久久不卡 | 老熟妇仑乱视频一区二区 | 亚洲欧美日韩成人高清在线一区 | 国产97色在线 | 免 | 精品久久8x国产免费观看 | 大肉大捧一进一出好爽视频 | 秋霞特色aa大片 | 国产精品自产拍在线观看 | 色 综合 欧美 亚洲 国产 | 性生交大片免费看l | 天天躁夜夜躁狠狠是什么心态 | 国产亚洲欧美日韩亚洲中文色 | 99国产欧美久久久精品 | 99久久99久久免费精品蜜桃 | 日本乱偷人妻中文字幕 | 亚洲精品一区二区三区四区五区 | 久久婷婷五月综合色国产香蕉 | 亚洲国产精品一区二区第一页 | 精品国精品国产自在久国产87 | 久久久久亚洲精品中文字幕 | 精品国产福利一区二区 | 久久久久se色偷偷亚洲精品av | 鲁大师影院在线观看 | аⅴ资源天堂资源库在线 | 亚洲色偷偷偷综合网 | 国产香蕉尹人综合在线观看 | 2020最新国产自产精品 | 国产精品手机免费 | 无码人妻出轨黑人中文字幕 | 久久精品视频在线看15 | 亚洲综合久久一区二区 | 亚洲中文字幕无码中字 | 久久综合久久自在自线精品自 | 欧美喷潮久久久xxxxx | 无码纯肉视频在线观看 | 久久成人a毛片免费观看网站 | 六十路熟妇乱子伦 | 久久精品中文闷骚内射 | 麻花豆传媒剧国产免费mv在线 | 国产精品人人爽人人做我的可爱 | 亚洲自偷精品视频自拍 | 精品无码成人片一区二区98 | 国产亚洲美女精品久久久2020 | 欧美黑人巨大xxxxx | 亚洲欧美国产精品专区久久 | 久久综合给久久狠狠97色 | 精品久久久久久人妻无码中文字幕 | 亚洲成a人一区二区三区 | 精品偷拍一区二区三区在线看 | 中文字幕人成乱码熟女app | 中国女人内谢69xxxxxa片 | 日韩人妻系列无码专区 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | а√资源新版在线天堂 | 国产亚洲精品久久久久久大师 | 丰满肥臀大屁股熟妇激情视频 | 蜜桃臀无码内射一区二区三区 | 性做久久久久久久久 | 亚洲精品午夜无码电影网 | 亚洲国产成人a精品不卡在线 | 国产精品久久久久久久9999 | 玩弄中年熟妇正在播放 | 亚洲日韩一区二区 | 国产在线精品一区二区三区直播 | 天天av天天av天天透 | 亚洲成av人片在线观看无码不卡 | 久久综合激激的五月天 | 未满小14洗澡无码视频网站 | av在线亚洲欧洲日产一区二区 | 无码纯肉视频在线观看 | 黑人巨大精品欧美一区二区 | 国产精品视频免费播放 | 亚洲成a人一区二区三区 | 啦啦啦www在线观看免费视频 | 九九久久精品国产免费看小说 | 天天做天天爱天天爽综合网 | 欧美日本精品一区二区三区 | 午夜无码人妻av大片色欲 | 久久精品中文字幕一区 | 东京热无码av男人的天堂 | 久久久中文久久久无码 | 夜夜夜高潮夜夜爽夜夜爰爰 | 全黄性性激高免费视频 | 亚洲一区二区三区在线观看网站 | 欧美熟妇另类久久久久久不卡 | 男女猛烈xx00免费视频试看 | 蜜桃视频插满18在线观看 | 国产口爆吞精在线视频 | 久久精品中文闷骚内射 | 国产在热线精品视频 | 98国产精品综合一区二区三区 | √8天堂资源地址中文在线 | 久久久久亚洲精品男人的天堂 | 人人澡人摸人人添 | 国产精品久久久久7777 | 亚洲理论电影在线观看 | 亚洲精品一区三区三区在线观看 | 亚拍精品一区二区三区探花 | 午夜精品久久久内射近拍高清 | 乱码av麻豆丝袜熟女系列 | www国产亚洲精品久久网站 | 久久综合九色综合欧美狠狠 | 久久久www成人免费毛片 | 亚洲欧美国产精品久久 | 精品无码av一区二区三区 | 女人被男人爽到呻吟的视频 | 波多野42部无码喷潮在线 | 强辱丰满人妻hd中文字幕 | 少妇的肉体aa片免费 | 国产超级va在线观看视频 | 野外少妇愉情中文字幕 | 国产真实伦对白全集 | 无码国产色欲xxxxx视频 | 国产成人精品必看 | 清纯唯美经典一区二区 | 欧美黑人巨大xxxxx | 亚洲国产精品成人久久蜜臀 | 国产精品无码一区二区三区不卡 | 日日碰狠狠丁香久燥 | 久久人人爽人人爽人人片av高清 | 亚洲日本一区二区三区在线 | 亚洲人成网站在线播放942 | 午夜无码人妻av大片色欲 | 国产精品久久久午夜夜伦鲁鲁 | 久久亚洲中文字幕无码 | 欧美丰满熟妇xxxx | 亚洲男人av香蕉爽爽爽爽 | √天堂资源地址中文在线 | 99久久精品日本一区二区免费 | 又粗又大又硬又长又爽 | 国产无遮挡又黄又爽又色 | 国产福利视频一区二区 | 亚洲色无码一区二区三区 | 国产成人无码午夜视频在线观看 | 玩弄人妻少妇500系列视频 | 六月丁香婷婷色狠狠久久 | 国产精品久久久久久亚洲毛片 | 久久综合狠狠综合久久综合88 | 国产人妖乱国产精品人妖 | 国产成人无码av片在线观看不卡 | 天堂а√在线地址中文在线 | 国产香蕉97碰碰久久人人 | 少妇愉情理伦片bd | 久久精品国产一区二区三区 | 日韩亚洲欧美精品综合 | 久久www免费人成人片 | 永久免费观看美女裸体的网站 | 中文字幕人妻无码一夲道 | 综合网日日天干夜夜久久 | 日本精品人妻无码免费大全 | 国产在线aaa片一区二区99 | 亚洲狠狠婷婷综合久久 | 久久国产精品萌白酱免费 | 国产精品手机免费 | 国产成人无码区免费内射一片色欲 | 成 人影片 免费观看 | 荫蒂被男人添的好舒服爽免费视频 | 国产香蕉尹人综合在线观看 | 欧美国产亚洲日韩在线二区 | 夫妻免费无码v看片 | 在线观看国产一区二区三区 | 久久久中文久久久无码 | 亚洲aⅴ无码成人网站国产app | 日韩精品无码免费一区二区三区 | 亚洲va欧美va天堂v国产综合 | 国产成人av免费观看 | 国产人妻大战黑人第1集 | 久久国产精品精品国产色婷婷 | 亚洲s码欧洲m码国产av | 色婷婷久久一区二区三区麻豆 | 亚洲精品中文字幕乱码 | 99久久亚洲精品无码毛片 | 欧美一区二区三区视频在线观看 | 麻豆人妻少妇精品无码专区 | 亚洲热妇无码av在线播放 | 国产av久久久久精东av | 国产亚洲日韩欧美另类第八页 | 帮老师解开蕾丝奶罩吸乳网站 | 国产精品.xx视频.xxtv | 久久精品丝袜高跟鞋 | 国产色精品久久人妻 | 欧美老人巨大xxxx做受 | 人妻无码久久精品人妻 | 老熟女重囗味hdxx69 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 在线成人www免费观看视频 | 人人妻人人澡人人爽人人精品浪潮 | 国产精品美女久久久 | 无码午夜成人1000部免费视频 | 色偷偷人人澡人人爽人人模 | 国产精品无套呻吟在线 | 久久国产精品偷任你爽任你 | 黑人粗大猛烈进出高潮视频 | 捆绑白丝粉色jk震动捧喷白浆 | 中文字幕av伊人av无码av | 免费无码的av片在线观看 | 国产亚av手机在线观看 | 亚洲 另类 在线 欧美 制服 | 人妻互换免费中文字幕 | 久久久av男人的天堂 | 午夜免费福利小电影 | 强伦人妻一区二区三区视频18 | 国产性生大片免费观看性 | 中文字幕色婷婷在线视频 | 曰本女人与公拘交酡免费视频 | 综合激情五月综合激情五月激情1 | 精品国偷自产在线视频 | 妺妺窝人体色www婷婷 | 亚洲欧洲日本综合aⅴ在线 | 国产精品怡红院永久免费 | 日产精品高潮呻吟av久久 | 人妻有码中文字幕在线 | 成人av无码一区二区三区 | 久久人人爽人人爽人人片ⅴ | 亚洲一区二区三区在线观看网站 | 国产午夜视频在线观看 | 亚洲熟女一区二区三区 | 99国产精品白浆在线观看免费 | 亚洲精品一区三区三区在线观看 | 欧美自拍另类欧美综合图片区 | 国产乱人偷精品人妻a片 | 亚洲天堂2017无码 | 漂亮人妻洗澡被公强 日日躁 | 丁香啪啪综合成人亚洲 | 日日躁夜夜躁狠狠躁 | 亚洲色欲色欲欲www在线 | 丝袜 中出 制服 人妻 美腿 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 7777奇米四色成人眼影 | 亚洲综合久久一区二区 | 亚洲国产日韩a在线播放 | 在线播放免费人成毛片乱码 | 国产亚洲精品久久久久久国模美 | 免费乱码人妻系列无码专区 | 一本久久a久久精品vr综合 | 成人亚洲精品久久久久 | 国产精品毛多多水多 | 人人爽人人澡人人人妻 | 人人妻人人澡人人爽精品欧美 | 欧美国产日韩亚洲中文 | 久久久久亚洲精品中文字幕 | 伊在人天堂亚洲香蕉精品区 | 少妇无码av无码专区在线观看 | 亚洲熟妇色xxxxx欧美老妇y | 欧美精品免费观看二区 | 中文字幕无码热在线视频 | 99精品视频在线观看免费 | 久久国产36精品色熟妇 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产在线精品一区二区高清不卡 | 真人与拘做受免费视频 | 精品久久8x国产免费观看 | аⅴ资源天堂资源库在线 | 国产无套内射久久久国产 | 国内精品人妻无码久久久影院蜜桃 | 色情久久久av熟女人妻网站 | 牛和人交xxxx欧美 | 亚洲熟妇色xxxxx欧美老妇y | 中文字幕乱妇无码av在线 | 日本精品人妻无码免费大全 | 18禁止看的免费污网站 | 色婷婷久久一区二区三区麻豆 | 久久www免费人成人片 | 午夜福利不卡在线视频 | 久久久久99精品成人片 | 丰满少妇弄高潮了www | 自拍偷自拍亚洲精品被多人伦好爽 | 亚洲精品一区二区三区在线 | 亚洲精品鲁一鲁一区二区三区 | 日本大乳高潮视频在线观看 | 精品无码国产自产拍在线观看蜜 | 两性色午夜免费视频 | 国产偷国产偷精品高清尤物 | 国产片av国语在线观看 | 岛国片人妻三上悠亚 | 亚洲精品无码国产 | 一本久道久久综合狠狠爱 | 乱码av麻豆丝袜熟女系列 | 99精品久久毛片a片 | 亚洲国产精品美女久久久久 | 精品久久综合1区2区3区激情 | 小sao货水好多真紧h无码视频 | 99久久精品午夜一区二区 | 中文字幕人妻无码一区二区三区 | 亚洲国产午夜精品理论片 | 精品成在人线av无码免费看 | 国产69精品久久久久app下载 | 伊在人天堂亚洲香蕉精品区 | 无码人妻丰满熟妇区毛片18 | 久久天天躁狠狠躁夜夜免费观看 | 一本久道久久综合婷婷五月 | 内射巨臀欧美在线视频 | 日本丰满熟妇videos | 久久久久亚洲精品中文字幕 | 丰满少妇女裸体bbw | 色综合久久中文娱乐网 | 亚洲呦女专区 | 国产亚洲精品久久久闺蜜 | 狂野欧美性猛xxxx乱大交 | 中文字幕无码免费久久9一区9 | 久久久精品人妻久久影视 | 综合激情五月综合激情五月激情1 | 国产乱人无码伦av在线a | 久久99国产综合精品 | 人人妻人人澡人人爽人人精品浪潮 | 日韩在线不卡免费视频一区 | 无码av免费一区二区三区试看 | 国产综合色产在线精品 | 久久熟妇人妻午夜寂寞影院 | 少妇的肉体aa片免费 | 国产av一区二区精品久久凹凸 | 久9re热视频这里只有精品 | 久久国产劲爆∧v内射 | 国产一区二区三区影院 | 成人aaa片一区国产精品 | 天天爽夜夜爽夜夜爽 | 国内丰满熟女出轨videos | 国产免费无码一区二区视频 | 4hu四虎永久在线观看 | 亚洲成色www久久网站 | 青春草在线视频免费观看 | 亚洲日韩中文字幕在线播放 | 丰满人妻翻云覆雨呻吟视频 | 任你躁国产自任一区二区三区 | 无人区乱码一区二区三区 | 中文字幕日产无线码一区 | 国产香蕉尹人综合在线观看 | 精品无码成人片一区二区98 | 99久久99久久免费精品蜜桃 | 久久久久99精品成人片 | 国内综合精品午夜久久资源 | 亚洲色大成网站www国产 | 精品偷自拍另类在线观看 | 欧美性猛交内射兽交老熟妇 | 亚洲小说春色综合另类 | 亚洲熟妇色xxxxx欧美老妇 | 亚洲gv猛男gv无码男同 | 亚洲精品国产a久久久久久 | 中国女人内谢69xxxx | 成人免费视频视频在线观看 免费 | 妺妺窝人体色www在线小说 | 高清无码午夜福利视频 | 曰本女人与公拘交酡免费视频 | 大地资源中文第3页 | 九九久久精品国产免费看小说 | 午夜理论片yy44880影院 | 无码人妻少妇伦在线电影 | 无码播放一区二区三区 | 九九热爱视频精品 | 欧美人与物videos另类 | 在线看片无码永久免费视频 | 欧美日韩亚洲国产精品 | 色综合久久久无码网中文 | 西西人体www44rt大胆高清 | 性色欲情网站iwww九文堂 | 激情亚洲一区国产精品 | 黑人巨大精品欧美一区二区 | 日本一区二区三区免费高清 | 国色天香社区在线视频 | 99久久精品日本一区二区免费 | 131美女爱做视频 | 无码人妻丰满熟妇区五十路百度 | 欧美精品国产综合久久 | 久久亚洲中文字幕无码 | 久久午夜无码鲁丝片 | 人人超人人超碰超国产 | 色老头在线一区二区三区 | 人人妻人人藻人人爽欧美一区 | 国产精品久久久久久久影院 | 曰韩少妇内射免费播放 | 少妇无码一区二区二三区 | av在线亚洲欧洲日产一区二区 | aa片在线观看视频在线播放 | 亚洲天堂2017无码 | 国产精品久久久久影院嫩草 | 国产香蕉97碰碰久久人人 | 国产小呦泬泬99精品 | 欧美黑人性暴力猛交喷水 | 波多野结衣一区二区三区av免费 | 小泽玛莉亚一区二区视频在线 | 国产午夜无码精品免费看 | 亚洲欧美日韩综合久久久 | 十八禁视频网站在线观看 | 18禁止看的免费污网站 | 一本久道久久综合狠狠爱 | 中文字幕乱妇无码av在线 | 亚洲欧美日韩综合久久久 | 18禁止看的免费污网站 | 少女韩国电视剧在线观看完整 | 久久精品国产一区二区三区 | 欧美成人免费全部网站 | 亚洲国产精品无码一区二区三区 | 三级4级全黄60分钟 | 狠狠色噜噜狠狠狠7777奇米 | 国产乱人偷精品人妻a片 | 色五月五月丁香亚洲综合网 | 动漫av一区二区在线观看 | 国产人妖乱国产精品人妖 | 狠狠色噜噜狠狠狠7777奇米 | 中文字幕无码免费久久99 | 又色又爽又黄的美女裸体网站 | 亚洲色大成网站www | 蜜桃av抽搐高潮一区二区 | 特大黑人娇小亚洲女 | 久久久久免费精品国产 | 无码人妻丰满熟妇区毛片18 | 亚洲啪av永久无码精品放毛片 | 无码人妻丰满熟妇区五十路百度 | 亚洲区小说区激情区图片区 | 熟妇激情内射com | 强辱丰满人妻hd中文字幕 | 疯狂三人交性欧美 | 亚洲综合色区中文字幕 | 午夜成人1000部免费视频 | 中文字幕日韩精品一区二区三区 | 欧美阿v高清资源不卡在线播放 | 中文字幕av无码一区二区三区电影 | 在线播放无码字幕亚洲 | 在线精品国产一区二区三区 | 久久国产自偷自偷免费一区调 | 蜜桃臀无码内射一区二区三区 | 亚洲の无码国产の无码影院 | 国产成人无码一二三区视频 | 日韩亚洲欧美中文高清在线 | 成年美女黄网站色大免费全看 | 真人与拘做受免费视频一 | 一本一道久久综合久久 | 国内精品九九久久久精品 | 国产精品亚洲一区二区三区喷水 | 亚洲熟悉妇女xxx妇女av | av在线亚洲欧洲日产一区二区 | 美女张开腿让人桶 | 中文字幕无码av激情不卡 | 岛国片人妻三上悠亚 | 成人欧美一区二区三区黑人 | 亚洲欧美国产精品专区久久 | 日韩亚洲欧美中文高清在线 | 精品人妻av区 | 国产网红无码精品视频 | 欧美亚洲日韩国产人成在线播放 | 丝袜 中出 制服 人妻 美腿 | 欧美人与动性行为视频 | 亚洲国产欧美在线成人 | 亚洲 另类 在线 欧美 制服 | 欧美三级a做爰在线观看 | 亚洲精品综合五月久久小说 | 波多野结衣乳巨码无在线观看 | 国产性生交xxxxx无码 | 无套内射视频囯产 | 国产精品无码久久av | 精品无码成人片一区二区98 | 99久久久无码国产aaa精品 | 少妇邻居内射在线 | 成在人线av无码免观看麻豆 | 久久久久亚洲精品中文字幕 | 亚洲 激情 小说 另类 欧美 | 狠狠cao日日穞夜夜穞av | 精品成在人线av无码免费看 | 国产成人av免费观看 | 九九久久精品国产免费看小说 | 十八禁视频网站在线观看 | 欧美老人巨大xxxx做受 | 亚洲一区二区三区香蕉 | 国产人妻精品一区二区三区 | 久久人人爽人人人人片 | 欧美野外疯狂做受xxxx高潮 | 久久国产劲爆∧v内射 | 噜噜噜亚洲色成人网站 | 久激情内射婷内射蜜桃人妖 | 99精品国产综合久久久久五月天 | 成人欧美一区二区三区黑人 | 99久久亚洲精品无码毛片 | 人妻少妇精品无码专区动漫 | 亚洲最大成人网站 | 性开放的女人aaa片 | 少妇被粗大的猛进出69影院 | 女人被爽到呻吟gif动态图视看 | 2020久久超碰国产精品最新 | www成人国产高清内射 | 免费网站看v片在线18禁无码 | аⅴ资源天堂资源库在线 | 无码午夜成人1000部免费视频 | 亚洲欧美综合区丁香五月小说 | 久久亚洲精品中文字幕无男同 | 日本又色又爽又黄的a片18禁 | 亚洲日本在线电影 | 无码av中文字幕免费放 | 日本护士xxxxhd少妇 | 亚洲日本在线电影 | 爱做久久久久久 | 无码人妻少妇伦在线电影 | 夜夜高潮次次欢爽av女 | 国产激情无码一区二区app | 成人无码视频免费播放 | 国产黄在线观看免费观看不卡 | 亚洲一区二区三区国产精华液 | 国精品人妻无码一区二区三区蜜柚 | 一本久道久久综合婷婷五月 | 国产亚洲精品久久久久久大师 | 乱码av麻豆丝袜熟女系列 | 夜夜高潮次次欢爽av女 | 少妇高潮一区二区三区99 | 天干天干啦夜天干天2017 | 亚洲一区av无码专区在线观看 | 精品久久久久久人妻无码中文字幕 | 国内老熟妇对白xxxxhd | 久久精品国产99久久6动漫 | 亚洲欧洲日本综合aⅴ在线 | 婷婷五月综合缴情在线视频 | 色综合久久久无码中文字幕 | 久久久久免费看成人影片 | av无码不卡在线观看免费 | 国产成人午夜福利在线播放 | 精品 日韩 国产 欧美 视频 | 永久免费观看美女裸体的网站 | 成人亚洲精品久久久久软件 | 亚洲熟妇色xxxxx欧美老妇 | 美女毛片一区二区三区四区 | 一本久道久久综合婷婷五月 | 国产精品久免费的黄网站 | 九九久久精品国产免费看小说 | 国产舌乚八伦偷品w中 | 极品尤物被啪到呻吟喷水 | 国产精品久久久久9999小说 | 久在线观看福利视频 | 亚洲自偷自偷在线制服 | 人妻少妇精品无码专区动漫 | 日韩人妻无码中文字幕视频 | 伊人久久大香线焦av综合影院 | 无码av最新清无码专区吞精 | 国产精品久久久久影院嫩草 | 精品久久久久久人妻无码中文字幕 | 国产午夜精品一区二区三区嫩草 | 午夜嘿嘿嘿影院 | 免费无码肉片在线观看 | 美女毛片一区二区三区四区 | av无码久久久久不卡免费网站 | 午夜时刻免费入口 | 国产成人一区二区三区别 | 国产亚洲美女精品久久久2020 | 天堂а√在线中文在线 | 水蜜桃av无码 | 成人三级无码视频在线观看 | 久久精品国产99久久6动漫 | 曰韩无码二三区中文字幕 | 成人欧美一区二区三区黑人免费 | 亲嘴扒胸摸屁股激烈网站 | 奇米影视7777久久精品人人爽 | 国产亚洲日韩欧美另类第八页 | 男人和女人高潮免费网站 | 国产口爆吞精在线视频 | 男女猛烈xx00免费视频试看 | 狠狠综合久久久久综合网 | 丁香花在线影院观看在线播放 | 3d动漫精品啪啪一区二区中 | 亚洲娇小与黑人巨大交 | 国内精品人妻无码久久久影院 | 波多野结衣乳巨码无在线观看 | 国产女主播喷水视频在线观看 | 精品无码国产自产拍在线观看蜜 | 午夜精品久久久内射近拍高清 | 亚洲熟悉妇女xxx妇女av | 中文字幕 人妻熟女 | www国产精品内射老师 | 伊人久久婷婷五月综合97色 | 国产人妻精品一区二区三区不卡 | 欧美国产日产一区二区 | 我要看www免费看插插视频 | 俺去俺来也www色官网 | 国产精品久久久久久久影院 | 中文字幕人妻无码一区二区三区 | 国产人成高清在线视频99最全资源 | 内射欧美老妇wbb | 麻豆md0077饥渴少妇 | 日韩精品a片一区二区三区妖精 | 国产综合久久久久鬼色 | 大地资源网第二页免费观看 | 青青青爽视频在线观看 | 初尝人妻少妇中文字幕 | 国产口爆吞精在线视频 | 内射爽无广熟女亚洲 | 秋霞成人午夜鲁丝一区二区三区 | 欧美老妇与禽交 | 国产无av码在线观看 | 高清不卡一区二区三区 | 无码人妻av免费一区二区三区 | 性欧美牲交在线视频 | 波多野结衣乳巨码无在线观看 | 97无码免费人妻超级碰碰夜夜 | 大色综合色综合网站 | 国产偷自视频区视频 | 免费看男女做好爽好硬视频 | 国产成人久久精品流白浆 | 日韩精品久久久肉伦网站 | 久久久www成人免费毛片 | 又湿又紧又大又爽a视频国产 | 鲁大师影院在线观看 | 熟女俱乐部五十路六十路av | 久久综合香蕉国产蜜臀av | 人妻天天爽夜夜爽一区二区 | 免费男性肉肉影院 | 老司机亚洲精品影院无码 | 国产精品久久福利网站 | 成熟女人特级毛片www免费 | 少妇厨房愉情理9仑片视频 | 欧美阿v高清资源不卡在线播放 | 国产色xx群视频射精 | 色婷婷综合中文久久一本 | 国内精品人妻无码久久久影院 | 中文字幕无码av波多野吉衣 | 日本高清一区免费中文视频 | 国产做国产爱免费视频 | 任你躁在线精品免费 | 曰本女人与公拘交酡免费视频 | 精品国产一区二区三区av 性色 | www一区二区www免费 | 色五月丁香五月综合五月 | 黄网在线观看免费网站 | 无码人妻少妇伦在线电影 | 亚无码乱人伦一区二区 | 日本精品人妻无码免费大全 | 国产高潮视频在线观看 | 在线亚洲高清揄拍自拍一品区 | 欧美精品无码一区二区三区 | 性做久久久久久久久 | 久久久久久久久888 | 99久久99久久免费精品蜜桃 | 午夜性刺激在线视频免费 | 久久久久免费看成人影片 | 国产午夜无码视频在线观看 | 九九久久精品国产免费看小说 | 精品国产一区av天美传媒 | 中文毛片无遮挡高清免费 | 国产亚洲精品精品国产亚洲综合 | 久久99精品国产.久久久久 | 又大又硬又黄的免费视频 | ass日本丰满熟妇pics | 人妻熟女一区 | 99精品视频在线观看免费 | 影音先锋中文字幕无码 | 久久精品中文闷骚内射 | 鲁鲁鲁爽爽爽在线视频观看 | 国产亚洲日韩欧美另类第八页 | 中文字幕乱码亚洲无线三区 | 中文字幕人妻丝袜二区 | 在线精品亚洲一区二区 | 狂野欧美性猛xxxx乱大交 | 131美女爱做视频 | 成人性做爰aaa片免费看不忠 | 免费乱码人妻系列无码专区 | 小鲜肉自慰网站xnxx | 欧美野外疯狂做受xxxx高潮 | 免费乱码人妻系列无码专区 | 日本免费一区二区三区最新 | 欧美国产日韩亚洲中文 | 老司机亚洲精品影院 | 荫蒂被男人添的好舒服爽免费视频 | 国产成人av免费观看 | 伊人久久婷婷五月综合97色 | 久久97精品久久久久久久不卡 | 人妻体内射精一区二区三四 | 免费视频欧美无人区码 | 国产va免费精品观看 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产性生交xxxxx无码 | 国产成人精品三级麻豆 | 成年美女黄网站色大免费视频 | 亚洲国产精品成人久久蜜臀 | 国产片av国语在线观看 | 欧美怡红院免费全部视频 | 国产精品人人妻人人爽 | 久久99精品国产.久久久久 | 成人免费视频在线观看 | 九月婷婷人人澡人人添人人爽 | 午夜肉伦伦影院 | 性生交大片免费看女人按摩摩 | 国产精品爱久久久久久久 | 国产福利视频一区二区 | 欧美成人午夜精品久久久 | 国产香蕉尹人综合在线观看 | 成人无码影片精品久久久 | 久久 国产 尿 小便 嘘嘘 | aⅴ亚洲 日韩 色 图网站 播放 | 成人精品天堂一区二区三区 | 东京热无码av男人的天堂 | 久久伊人色av天堂九九小黄鸭 | 国产两女互慰高潮视频在线观看 | 国产97在线 | 亚洲 | 又黄又爽又色的视频 | 成人毛片一区二区 | 亚洲日本va午夜在线电影 | 无码午夜成人1000部免费视频 | 中文字幕乱码人妻二区三区 | 欧美性色19p | 亚洲欧美日韩综合久久久 | 国产精品久久精品三级 | 婷婷色婷婷开心五月四房播播 | 夜夜高潮次次欢爽av女 | 精品偷自拍另类在线观看 | 成人试看120秒体验区 | 国产绳艺sm调教室论坛 | 红桃av一区二区三区在线无码av | 欧美色就是色 | 国产人妻精品一区二区三区不卡 | 免费无码的av片在线观看 | 国产suv精品一区二区五 | 免费看男女做好爽好硬视频 | 无码人妻精品一区二区三区下载 | 国产午夜福利100集发布 | 丝袜 中出 制服 人妻 美腿 | 无码人妻出轨黑人中文字幕 | 日日鲁鲁鲁夜夜爽爽狠狠 | 日本在线高清不卡免费播放 | 妺妺窝人体色www婷婷 | 免费网站看v片在线18禁无码 | 在线亚洲高清揄拍自拍一品区 | 偷窥日本少妇撒尿chinese | 四虎影视成人永久免费观看视频 | 狠狠色噜噜狠狠狠7777奇米 | 国产精品亚洲一区二区三区喷水 | 婷婷五月综合激情中文字幕 | 久久精品国产大片免费观看 | 亚洲综合精品香蕉久久网 | 在线播放亚洲第一字幕 | 亚洲日韩av片在线观看 | 国产成人精品视频ⅴa片软件竹菊 | 精品国产一区二区三区av 性色 | 日日天日日夜日日摸 | 久在线观看福利视频 | 欧美xxxxx精品 | a在线亚洲男人的天堂 | 国产高清不卡无码视频 | 装睡被陌生人摸出水好爽 | 无码一区二区三区在线 | 久久精品国产一区二区三区肥胖 | 日日摸天天摸爽爽狠狠97 | 亚洲中文无码av永久不收费 | 少妇的肉体aa片免费 | 人妻少妇精品久久 | 无码乱肉视频免费大全合集 | 亚洲精品一区二区三区四区五区 | 99精品视频在线观看免费 | 中文字幕无线码 | 色综合久久久久综合一本到桃花网 | 在线视频网站www色 | 中文字幕乱妇无码av在线 | 久久熟妇人妻午夜寂寞影院 | 国产无遮挡又黄又爽免费视频 | 亚洲精品中文字幕乱码 | 97精品人妻一区二区三区香蕉 | 99精品视频在线观看免费 | 国产色xx群视频射精 | 国产精品对白交换视频 | 亚洲色在线无码国产精品不卡 | 成人亚洲精品久久久久软件 | 亚洲日本va午夜在线电影 | 国产两女互慰高潮视频在线观看 | 成人欧美一区二区三区 | 在线播放免费人成毛片乱码 | a在线观看免费网站大全 | 自拍偷自拍亚洲精品被多人伦好爽 | 亚洲成a人片在线观看日本 |