Regular Expressions 101

Save & Manage Regex

  • Current Version: 1
  • Save & Share
  • Community Library

Flavor

  • PCRE2 (PHP)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java
  • .NET 7.0 (C#)
  • Rust
  • PCRE (Legacy)
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests
Sponsors
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Character class intersection
    [\w&&[^\d]]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression
Processing...

Test String

Code Generator

Generated Code

// include the latest version of the regex crate in your Cargo.toml extern crate regex; use regex::Regex; fn main() { let regex = Regex::new(r#"(?m).?<span id="[a-zA-Z0-9]+" class="thumb"><a id="[a-zA-Z0-9]+" href=".+"><img src="(.+)" alt=".+" border="[01]" title=".+" class=".+" \/><\/a><\/span>.?"#).unwrap(); let string = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> <html xmlns=\"//www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"> <head> <meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" /> <link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"https://rule34.xxx/css/desktop.css?6\" title=\"default\" /> <link rel=\"stylesheet\" href=\"https://rule34.xxx/script/awesomplete.css\" /> <title>Rule 34 / loli</title> <meta name=\"keywords\" content=\"Rule34, imageboard\" /> <meta name=\"description\" content=\"Rule 34 - If it exists, there is porn of it.\" /> <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /> <link rel=\"shortcut icon\" href=\"//rule34.xxx/favicon.ico?v=2\" /> <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/apple-touch-icon.png\"> <link rel=\"mask-icon\" href=\"/safari-pinned-tab.svg\" color=\"#5bbad5\"> <meta name=\"theme-color\" content=\"#ffffff\"> <script type=\"text/javascript\" src=\"/ads2.js\"></script> <meta name=\"rating\" content=\"mature\" /><link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Rule34.com: Coded by Geltas\" href=\"Rule34.xml\" /><link rel=\"alternate\" href=\"index.php?page=cooliris\" type=\"application/rss+xml\" title=\"RSS\" id=\"gallery\" /> <link href=\"https://rule34.xxx/index.php?page=atom\" rel=\"alternate\" title=\"ATOM\" type=\"application/atom+xml\" /> <script src=\"https://rule34.xxx/script/application.js\" type=\"text/javascript\"></script> <script src=\"https://rule34.xxx/script/awesomplete.min.js?v5\" type=\"text/javascript\"></script> <!--[if lt IE 7]> <style type=\"text/css\"> body div#post-view > div#right-col > div > div#note-container > div.note-body{ overflow: visible; } </style> <script src=\"//ie7-js.googlecode.com/svn/trunk/lib/IE7.js\" type=\"text/javascript\"></script> <![endif]--> <script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-16180617-32\"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-16180617-32', {'sampleRate': 5}); ga('send', 'pageview'); </script> </head> <body id=\"body\"> <script> function tv(a){if(a !=='undefined'){new Ajax.Request('/?page=notify1&a=0',{method:\"GET\"})};} tv(typeof testvar); </script> <script src='https://www.google.com/recaptcha/api.js'></script> <link href=\"https://rule34.xxx/script/fluidplayer/fluidplayer.css?v=1\" rel=\"stylesheet\"> <script src=\"https://rule34.xxx/script/fluidplayer/fluidplayer.js\"></script> <div id=\"header\"> <h2 id=\"site-title\"><a href=\"https://rule34.xxx/\">Rule 34</a></h2> <ul class=\"flat-list\" id=\"navbar\"> <li><a href=\"https://rule34.xxx/index.php?page=account&s=home\">My Account</a></li> <li class=\"current-page\"><a href=\"https://rule34.xxx/index.php?page=post&s=list&tags=all\">Posts</a></li> <li><a href=\"https://rule34.xxx/index.php?page=comment&s=list\">Comments</a></li> <li><a href=\"https://rule34.xxx/index.php?page=alias&s=list\">Aliases</a></li> <li><a href=\"https://rule34.xxx/index.php?page=artist&s=list\">Artists</a></li> <li><a href=\"https://rule34.xxx/index.php?page=tags&s=list\">Tags</a></li> <li><a href=\"https://rule34.xxx/index.php?page=pool&s=list\">Pools</a></li> <li><a href=\"https://rule34.xxx/index.php?page=forum&s=list\">Forum</a></li> <li><a href=\"https://rule34.xxx/stats/\">Stats</a></li> <li><a href=\"https://rule34.xxx/icameout.php\">iCame Top 100</a></li> <li><a href=\"https://rule34.xxx/index.php?page=help\">Help</a></li> <li><a href=\"https://discord.gg/RrVyzDd\">Discord Chat</a></li> <li><a href=\"https://safebooru.org/index.php?page=forum&s=view&id=278\">Support</a></li> <li><a style=\"font-weight: bolder; color: #009398;\" href=\"https://buymyshit.moneygrubbingwhore.com/index.php?page=products&amp;s=view&amp;id=6\">Buy Shirt</a></li> <li><a style=\"font-weight: bolder\" href=\"/link.php\">Other Sites</a></li> </ul> <ul class=\"flat-list\" id=\"subnavbar\" style=\"margin-bottom: 1px;\"><li><a href=\"index.php?page=post&amp;s=list\">List</a></li><li><a href=\"index.php?page=post&amp;s=add\">Upload</a></li><li><a href=\"index.php?page=post&amp;s=addVideo\">Upload WebM</a></li><li><a href=\"index.php?page=post&amp;s=random\">Random</a></li><li><a href=\"/cdn-cgi/l/email-protection#3e4d4a5f58587e5c51514c4b10514c59\">Contact Us</a></li><li><a href=\"index.php?page=about\">About</a></li><li><a href=\"index.php?page=help&amp;topic=post\">Help</a></li><li><a href=\"/tos.php\">TOS</a></li></ul></div><div id=\"long-notice\"></div><div id=\"notice\" style=\"display: none;\"></div><div class=\"has-mail\" id=\"has-mail-notice\" style=\"display: none;\"><a href=\"https://rule34.xxx/index.php?page=gmail\">You have mail</a></div><script data-cfasync=\"false\" src=\"/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js\"></script><script type=\"text/javascript\"> //<![CDATA[ var posts = {}; var pignored = {}; //]]> </script> <!--[if lt IE 7]> <div style=\"background: #f0f0f0; padding: 10px; text-align: center; border: 3px solid #dadada;\">Support for this browser is very limited. Please upgrade or switch to a new browser. <a href=\"http://www.mozilla.com/firefox/\">Firefox</a>, <a href=\"http://www.microsoft.com/windows/internet-explorer/download-ie.aspx\">Internet Explorer</a>. </div> <![endif]--> <div class=\"has-mail\" id=\"safe-image-notice\" style=\"display:none;\"> <a href=\"index.php?page=help&amp;topic=post\">Safe images only mode.</a> </div> <div id=\"content\"> <div id=\"post-list\"> <div class=\"sidebar\"> <div> <h5>Search</h5> <form action=\"index.php?page=search\" method=\"post\"> <div> <input id=\"tags\" name=\"tags\" style=\"width: 142px;\" type=\"text\" value=\"loli\" /> <br /><input name=\"commit\" style=\"margin-top: 3px; background: #fff; border: 1px solid #dadada; width: 154px;\" type=\"submit\" value=\"Search\" /> </div> </form> <small>(Supports wildcard *)</small> </div> <iframe src=\"https://ads.trafficjunky.net/ads?zone_id=1812571&site_id=217691&format=HTML&cache=1524863046\" width=\"160\" height=\"600\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" marginwidth=\"0\" marginheight=\"0\"></iframe> <div id=\"blacklisted-sidebar\" style=\"display: none;\"> <h5> <a href=\"#\" onclick=\"showHideIgnored('0','pi'); return false;\">Hidden</a> <span id=\"blacklist-count\" class=\"post-count\"></span> </h5> </div> <div> <h5>Tags</h5> <ul id=\"tag-sidebar\"> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+ass'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-ass'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=ass\">ass</a> <span style=\"color: #000000;\">492852</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+black_hair'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-black_hair'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=black_hair\">black hair</a> <span style=\"color: #000000;\">197373</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+blush'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-blush'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=blush\">blush</a> <span style=\"color: #000000;\">718491</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+breasts'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-breasts'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=breasts\">breasts</a> <span style=\"color: #000000;\">1271095</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+breasts_outside'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-breasts_outside'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=breasts_outside\">breasts outside</a> <span style=\"color: #000000;\">29691</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+cum'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-cum'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=cum\">cum</a> <span style=\"color: #000000;\">605357</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+cum_in_pussy'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-cum_in_pussy'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=cum_in_pussy\">cum in pussy</a> <span style=\"color: #000000;\">131185</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+cum_inside'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-cum_inside'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=cum_inside\">cum inside</a> <span style=\"color: #000000;\">208041</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+female'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-female'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=female\">female</a> <span style=\"color: #000000;\">1404981</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+hair_ornament'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-hair_ornament'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=hair_ornament\">hair ornament</a> <span style=\"color: #000000;\">51859</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+lamia'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-lamia'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=lamia\">lamia</a> <span style=\"color: #000000;\">1934</span></li> <li class=\"tag-type-character\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+lammy'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-lammy'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=lammy\">lammy</a> <span style=\"color: #000000;\">23</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+loli'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-loli'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=loli\">loli</a> <span style=\"color: #000000;\">28</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+long_hair'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-long_hair'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=long_hair\">long hair</a> <span style=\"color: #000000;\">435066</span></li> <li class=\"tag-type-metadata\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+manga'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-manga'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=manga\">manga</a> <span style=\"color: #000000;\">4008</span></li> <li class=\"tag-type-character\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+mikan_yuuki'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-mikan_yuuki'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=mikan_yuuki\">mikan yuuki</a> <span style=\"color: #000000;\">524</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+monster'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-monster'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=monster\">monster</a> <span style=\"color: #000000;\">35024</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+monster_cock'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-monster_cock'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=monster_cock\">monster cock</a> <span style=\"color: #000000;\">2205</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+monster_rape'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-monster_rape'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=monster_rape\">monster rape</a> <span style=\"color: #000000;\">756</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+nipples'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-nipples'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=nipples\">nipples</a> <span style=\"color: #000000;\">891280</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+panties'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-panties'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=panties\">panties</a> <span style=\"color: #000000;\">162364</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+semen'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-semen'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=semen\">semen</a> <span style=\"color: #000000;\">713</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+semen_on_body'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-semen_on_body'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=semen_on_body\">semen on body</a> <span style=\"color: #000000;\">26</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+serpent'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-serpent'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=serpent\">serpent</a> <span style=\"color: #000000;\">62</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+sex'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-sex'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=sex\">sex</a> <span style=\"color: #000000;\">621648</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+snake'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-snake'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=snake\">snake</a> <span style=\"color: #000000;\">11460</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+sweat'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-sweat'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=sweat\">sweat</a> <span style=\"color: #000000;\">216406</span></li> <li class=\"tag-type-artist\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+tatsuhiko'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-tatsuhiko'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=tatsuhiko\">tatsuhiko</a> <span style=\"color: #000000;\">32</span></li> <li class=\"tag-type-copyright\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+to_love-ru'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-to_love-ru'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=to_love-ru\">to love-ru</a> <span style=\"color: #000000;\">4990</span></li> <li class=\"tag-type-copyright\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+to_love-ru_darkness'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-to_love-ru_darkness'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=to_love-ru_darkness\">to love-ru darkness</a> <span style=\"color: #000000;\">833</span></li> <li class=\"tag-type-general\"><a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+wqtheartist'; return false;\" rel=\"nofollow\">+</a> <a href=\"https://rule34.xxx/\" onclick=\"document.location='index.php?page=post&amp;s=list&amp;tags=loli+-wqtheartist'; return false;\" rel=\"nofollow\">-</a> <a href=\"index.php?page=post&amp;s=list&amp;tags=wqtheartist\">wqtheartist</a> <span style=\"color: #000000;\">2</span></li> <img src=\"//rule34.xxx/images/r34chibi.png\" /> <li></li></ul></div></div><div class=\"content\"> <iframe src=\"https://ads.trafficjunky.net/ads?zone_id=1812541&site_id=217691&format=HTML&cache=1524863060\" width=\"728\" height=\"90\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" marginwidth=\"0\" marginheight=\"0\"></iframe> <br /><br /> <div> <span id=\"s3409621\" class=\"thumb\"><a id=\"p3409621\" href=\"index.php?page=post&amp;s=view&amp;id=3409621\"><img src=\"https://rule34.xxx/thumbnails/3041/thumbnail_9ed6ac36f893e567dcff0a55961c60b2.jpg?3409621\" alt=\" lamia lammy loli serpent snake wqtheartist \" border=\"0\" title=\" lamia lammy loli serpent snake wqtheartist score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3407923\" class=\"thumb\"><a id=\"p3407923\" href=\"index.php?page=post&amp;s=view&amp;id=3407923\"><img src=\"https://rule34.xxx/thumbnails/3040/thumbnail_06b90c79e0831fdc73ae12976e8556ce.jpg?3407923\" alt=\" ass black_hair blush breasts breasts_outside cum cum_in_pussy cum_inside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples panties sex sweat tatsuhiko to_love-ru to_love-ru_darkness \" border=\"0\" title=\" ass black_hair blush breasts breasts_outside cum cum_in_pussy cum_inside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples panties sex sweat tatsuhiko to_love-ru to_love-ru_darkness score:1 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3407922\" class=\"thumb\"><a id=\"p3407922\" href=\"index.php?page=post&amp;s=view&amp;id=3407922\"><img src=\"https://rule34.xxx/thumbnails/3040/thumbnail_ff497bb2f6dd7069d8029f5ae037f6d9.jpg?3407922\" alt=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples panties semen semen_on_body sex sweat tatsuhiko to_love-ru to_love-ru_darkness \" border=\"0\" title=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples panties semen semen_on_body sex sweat tatsuhiko to_love-ru to_love-ru_darkness score:1 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3407921\" class=\"thumb\"><a id=\"p3407921\" href=\"index.php?page=post&amp;s=view&amp;id=3407921\"><img src=\"https://rule34.xxx/thumbnails/3040/thumbnail_aaa7712cce3bf90c4a0c406c46d8d2a0.jpg?3407921\" alt=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples open_mouth panties panties_aside sex spread_legs sweat tatsuhiko tears to_love-ru to_love-ru_darkness \" border=\"0\" title=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples open_mouth panties panties_aside sex spread_legs sweat tatsuhiko tears to_love-ru to_love-ru_darkness score:4 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3407920\" class=\"thumb\"><a id=\"p3407920\" href=\"index.php?page=post&amp;s=view&amp;id=3407920\"><img src=\"https://rule34.xxx/thumbnails/3040/thumbnail_5c92a18bbb195b975a3b188a6fdf418d.jpg?3407920\" alt=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples open_mouth panties saliva sex sweat tatsuhiko tears to_love-ru to_love-ru_darkness \" border=\"0\" title=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples open_mouth panties saliva sex sweat tatsuhiko tears to_love-ru to_love-ru_darkness score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3407919\" class=\"thumb\"><a id=\"p3407919\" href=\"index.php?page=post&amp;s=view&amp;id=3407919\"><img src=\"https://rule34.xxx/thumbnails/3040/thumbnail_4448cf2e5fa6d7f655b7af4c41b6e617.jpg?3407919\" alt=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples panties sweat tatsuhiko to_love-ru to_love-ru_darkness \" border=\"0\" title=\" ass black_hair blush breasts breasts_outside female hair_ornament loli long_hair manga mikan_yuuki monster monster_cock monster_rape nipples panties sweat tatsuhiko to_love-ru to_love-ru_darkness score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406871\" class=\"thumb\"><a id=\"p3406871\" href=\"index.php?page=post&amp;s=view&amp;id=3406871\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_9ae717c31f170022b8bcedaa35b37c2f.jpg?3406871\" alt=\" black_hair blush breast_outside cum cum_on_body cum_on_breasts cum_on_face cum_on_upper_body gloves heart-shaped_pupils loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness ugly_man white_panties \" border=\"0\" title=\" black_hair blush breast_outside cum cum_on_body cum_on_breasts cum_on_face cum_on_upper_body gloves heart-shaped_pupils loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness ugly_man white_panties score:3 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406870\" class=\"thumb\"><a id=\"p3406870\" href=\"index.php?page=post&amp;s=view&amp;id=3406870\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_7c1703e8df657c0a43e31fb816256d51.jpg?3406870\" alt=\" black_hair blush breast_outside cum cum_on_upper_body gloves heart-shaped_pupils holding_leg loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness ugly_man white_panties \" border=\"0\" title=\" black_hair blush breast_outside cum cum_on_upper_body gloves heart-shaped_pupils holding_leg loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness ugly_man white_panties score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406866\" class=\"thumb\"><a id=\"p3406866\" href=\"index.php?page=post&amp;s=view&amp;id=3406866\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_8423a42499f5fb6679479c91e2fdbb4a.jpg?3406866\" alt=\" black_hair blush breast_outside breasts cum cum_on_body cum_on_upper_body gloves heart-shaped_pupils holding_leg loli long_hair maid maid_uniform manga mikan_yuuki nipples penis saliva semen sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness tongue_kiss white_panties \" border=\"0\" title=\" black_hair blush breast_outside breasts cum cum_on_body cum_on_upper_body gloves heart-shaped_pupils holding_leg loli long_hair maid maid_uniform manga mikan_yuuki nipples penis saliva semen sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness tongue_kiss white_panties score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406864\" class=\"thumb\"><a id=\"p3406864\" href=\"index.php?page=post&amp;s=view&amp;id=3406864\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_c71cf69fedcbbf417b7c22c434d26b05.jpg?3406864\" alt=\" black_hair blush breast_outside cum cum_on_body gloves holding_legs loli long_hair maid maid_uniform manga mikan_yuuki nipples penis saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness white_panties \" border=\"0\" title=\" black_hair blush breast_outside cum cum_on_body gloves holding_legs loli long_hair maid maid_uniform manga mikan_yuuki nipples penis saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness white_panties score:6 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406863\" class=\"thumb\"><a id=\"p3406863\" href=\"index.php?page=post&amp;s=view&amp;id=3406863\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_1965f871353d278b071b83746f7d3f59.jpg?3406863\" alt=\" black_hair blush breast_outside gloves kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man white_panties \" border=\"0\" title=\" black_hair blush breast_outside gloves kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man white_panties score:6 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406861\" class=\"thumb\"><a id=\"p3406861\" href=\"index.php?page=post&amp;s=view&amp;id=3406861\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_8814d227698943a166bb0655202b39a1.jpg?3406861\" alt=\" black_hair blush breast_outside gloves holding_leg kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man white_panties \" border=\"0\" title=\" black_hair blush breast_outside gloves holding_leg kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man white_panties score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406836\" class=\"thumb\"><a id=\"p3406836\" href=\"index.php?page=post&amp;s=view&amp;id=3406836\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_88fb591200a3c441fb690c013bd132f9.jpg?3406836\" alt=\" ambiguous_penetration black_hair blush doggy_style doggystyle gloves heart-shaped_pupils loli long_hair maid maid_uniform manga pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness ugly_man vaginal_juices \" border=\"0\" title=\" ambiguous_penetration black_hair blush doggy_style doggystyle gloves heart-shaped_pupils loli long_hair maid maid_uniform manga pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness ugly_man vaginal_juices score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406835\" class=\"thumb\"><a id=\"p3406835\" href=\"index.php?page=post&amp;s=view&amp;id=3406835\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_7d75d2197236f0575f8d6ac5eaee2b06.jpg?3406835\" alt=\" black_hair blush cum gloves heart-shaped_pupils loli long_hair maid maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness ugly_man vaginal_juices \" border=\"0\" title=\" black_hair blush cum gloves heart-shaped_pupils loli long_hair maid maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness ugly_man vaginal_juices score:1 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406832\" class=\"thumb\"><a id=\"p3406832\" href=\"index.php?page=post&amp;s=view&amp;id=3406832\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_a1df89c5db70ea0f017ca550b1079938.jpg?3406832\" alt=\"belly_button black_hair blush breast_outside cum doggy_style doggystyle gloves loli long_hair maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness ugly_man vaginal_juices visible_breath\" border=\"0\" title=\"belly_button black_hair blush breast_outside cum doggy_style doggystyle gloves loli long_hair maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness ugly_man vaginal_juices visible_breath score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406828\" class=\"thumb\"><a id=\"p3406828\" href=\"index.php?page=post&amp;s=view&amp;id=3406828\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_43a3e459af1ae53b6e0d522d1a73fca4.jpg?3406828\" alt=\" black_hair blush gloves hand_holding kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man vaginal_juices \" border=\"0\" title=\" black_hair blush gloves hand_holding kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man vaginal_juices score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406824\" class=\"thumb\"><a id=\"p3406824\" href=\"index.php?page=post&amp;s=view&amp;id=3406824\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_c2757a54fa97bfbcbf7f514cb55e7253.jpg?3406824\" alt=\"black_hair blush breast_outside breasts gloves heart-shaped_pupils loli long_hair maid_uniform manga mikan_yuuki nipples panties penis pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness vaginal_juices\" border=\"0\" title=\"black_hair blush breast_outside breasts gloves heart-shaped_pupils loli long_hair maid_uniform manga mikan_yuuki nipples panties penis pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness vaginal_juices score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406823\" class=\"thumb\"><a id=\"p3406823\" href=\"index.php?page=post&amp;s=view&amp;id=3406823\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_ec6d0f32912e0c154fdf93f6af45f392.jpg?3406823\" alt=\"black_hair blush gloves kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man vaginal_juices\" border=\"0\" title=\"black_hair blush gloves kissing loli long_hair maid maid_uniform manga mikan_yuuki nipples pussy_juice saliva sweat tatsuhiko tights to_love-ru to_love-ru_darkness tongue_kiss ugly_man vaginal_juices score:1 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406820\" class=\"thumb\"><a id=\"p3406820\" href=\"index.php?page=post&amp;s=view&amp;id=3406820\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_aea0b1fe589e5e0dbeafe966af1d8bd0.jpg?3406820\" alt=\"black_hair blush breast_outside breasts gloves loli long_hair maid maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva skirt_up sweat tights to_love-ru to_love-ru_darkness vaginal_juices visible_breath wet_penis\" border=\"0\" title=\"black_hair blush breast_outside breasts gloves loli long_hair maid maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva skirt_up sweat tights to_love-ru to_love-ru_darkness vaginal_juices visible_breath wet_penis score:0 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406818\" class=\"thumb\"><a id=\"p3406818\" href=\"index.php?page=post&amp;s=view&amp;id=3406818\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_e7ffb56bfc1713f9e2b25fc57f37e1de.jpg?3406818\" alt=\" black_hair blush breast_grab breast_outside breasts erect_nipples fingering gloves loli long_hair maid maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness vaginal_juices visible_breath \" border=\"0\" title=\" black_hair blush breast_grab breast_outside breasts erect_nipples fingering gloves loli long_hair maid maid_uniform manga mikan_yuuki nipples panties pussy_juice saliva sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness vaginal_juices visible_breath score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406802\" class=\"thumb\"><a id=\"p3406802\" href=\"index.php?page=post&amp;s=view&amp;id=3406802\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_af386d4241a3844d5b3d59effa8b4dd1.jpg?3406802\" alt=\"black_hair blush gloves loli long_hair maid maid_uniform manga mikan_yuuki panties skirt_up sweat tatsuhiko tights to_love-ru to_love-ru_darkness\" border=\"0\" title=\"black_hair blush gloves loli long_hair maid maid_uniform manga mikan_yuuki panties skirt_up sweat tatsuhiko tights to_love-ru to_love-ru_darkness score:1 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406799\" class=\"thumb\"><a id=\"p3406799\" href=\"index.php?page=post&amp;s=view&amp;id=3406799\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_503d89043a4b7a9a9295d6849ec13427.jpg?3406799\" alt=\" ass black_hair blush erect_nipples_under_clothes loli long_hair manga mikan_yuuki panties pussy_juice saliva skirt_up sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness vaginal_juices \" border=\"0\" title=\" ass black_hair blush erect_nipples_under_clothes loli long_hair manga mikan_yuuki panties pussy_juice saliva skirt_up sweat tatsuhiko tears tights to_love-ru to_love-ru_darkness vaginal_juices score:2 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406797\" class=\"thumb\"><a id=\"p3406797\" href=\"index.php?page=post&amp;s=view&amp;id=3406797\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_5de979323479a8d04f964dc7965ce272.jpg?3406797\" alt=\" black_hair blush gloves loli long_hair maid maid_uniform manga mikan_yuuki panties skirt_up sweat tatsuhiko tights to_love-ru to_love-ru_darkness \" border=\"0\" title=\" black_hair blush gloves loli long_hair maid maid_uniform manga mikan_yuuki panties skirt_up sweat tatsuhiko tights to_love-ru to_love-ru_darkness score:3 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406796\" class=\"thumb\"><a id=\"p3406796\" href=\"index.php?page=post&amp;s=view&amp;id=3406796\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_52ffcc4185a904d0f5213db46bb3a703.jpg?3406796\" alt=\" black_hair blush gloves loli long_hair maid maid_uniform manga mikan_yuuki skirt_up sweat tatsuhiko tights to_love-ru to_love-ru_darkness \" border=\"0\" title=\" black_hair blush gloves loli long_hair maid maid_uniform manga mikan_yuuki skirt_up sweat tatsuhiko tights to_love-ru to_love-ru_darkness score:3 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3406718\" class=\"thumb\"><a id=\"p3406718\" href=\"index.php?page=post&amp;s=view&amp;id=3406718\"><img src=\"https://rule34.xxx/thumbnails/3039/thumbnail_1b886853a41f0cefa601165b68049c2c.jpg?3406718\" alt=\" after_anal after_sex after_vaginal anus ass backpack bag bangs bare_arms black_hair blue_sky blurry blurry_background blush breasts brown_eyes brown_hair building bukkake character_sheet cloud cloudy_sky contentious_content cowboy_shot day eyebrows_visible_through_hair facial female female from_behind furyouhin_(bubumelon) graffiti hand_on_own_ass high_resolution japanese_language japanese_text loli looking_at_viewer looking_back mikan_yuuki nakadashi nipples no_pants nose_blush open_mouth outdoors overflow pantsu panty_pull randosel red_bag semen semen_in_anus semen_on_ass semen_on_body semen_on_clothes semen_on_hair semen_on_lower_body semen_on_upper_body shirt shirt_lift sky small_breasts solo spread_anus stairs sunset tally text to_love-ru to_love-ru_darkness translation_request underwear white_panties white_underwear \" border=\"0\" title=\" after_anal after_sex after_vaginal anus ass backpack bag bangs bare_arms black_hair blue_sky blurry blurry_background blush breasts brown_eyes brown_hair building bukkake character_sheet cloud cloudy_sky contentious_content cowboy_shot day eyebrows_visible_through_hair facial female female from_behind furyouhin_(bubumelon) graffiti hand_on_own_ass high_resolution japanese_language japanese_text loli looking_at_viewer looking_back mikan_yuuki nakadashi nipples no_pants nose_blush open_mouth outdoors overflow pantsu panty_pull randosel red_bag semen semen_in_anus semen_on_ass semen_on_body semen_on_clothes semen_on_hair semen_on_lower_body semen_on_upper_body shirt shirt_lift sky small_breasts solo spread_anus stairs sunset tally text to_love-ru to_love-ru_darkness translation_request underwear white_panties white_underwear score:34 rating:explicit\" class=\"preview\" /></a></span> <span id=\"s3404484\" class=\"thumb\"><a id=\"p3404484\" href=\"index.php?page=post&amp;s=view&amp;id=3404484\"><img src=\"https://rule34.xxx/thumbnails/3037/thumbnail_4bec7b30d74636630f37a92a1c345e9d.jpg?3404484\" alt=\" blue_eyes leechleaf lily loli nugget_(character) \" border=\"0\" title=\" blue_eyes leechleaf lily loli nugget_(character) score:2 rating:explicit\" class=\"preview\" /></a></span> </div><br /><br /><div id=\"paginator\"><div class=\"pagination\"> <b>1</b> <form id=\"manualpage\" onsubmit=\"return mnpage()\" style=\"display:inline;\"> <input type=\"text\" id=\"pageid\" style=\"background-color: rgb(150,200,130); width: 4em;\"> <input style=\"background-color: rgb(170,220,150); \" type=\"submit\" value=\"Go\"> </form> <script> function mnpage() { var newpid = 42 * (document.getElementById(\"pageid\").value-1); if (window.location.search.indexOf(\"pid\") > -1) { window.location.search = window.location.search.replace(/pid=[0-9]+/, \"pid=\" + newpid); } else { window.location.search += \"&pid=\" + newpid; } return false; } </script> </div></div> <br /> <center> <div style=\"display: inline-block;\"> <iframe src=\"https://ads.trafficjunky.net/ads?zone_id=1812501&site_id=217691&format=HTML&cache=1524863002\" width=\"300\" height=\"250\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" marginwidth=\"0\" marginheight=\"0\"></iframe> </div> <div style=\"display: inline-block;\"> <iframe src=\"https://ads.trafficjunky.net/ads?zone_id=1812521&site_id=217691&format=HTML&cache=1524863085\" width=\"300\" height=\"250\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" marginwidth=\"0\" marginheight=\"0\"></iframe> </div> <div style=\"display: inline-block;\"> <iframe src=\"https://ads.trafficjunky.net/ads?zone_id=1812511&site_id=217691&format=HTML&cache=1524863074\" width=\"300\" height=\"250\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" marginwidth=\"0\" marginheight=\"0\"></iframe> </div> </center> </div> <div class=\"sidebarRight\"> <iframe src=\"https://ads.trafficjunky.net/ads?zone_id=1812581&site_id=217691&format=HTML&cache=1524863096\" width=\"160\" height=\"600\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" marginwidth=\"0\" marginheight=\"0\"></iframe> </div> </div></div></div></div> </body> </html>"; // result will be an iterator over tuples containing the start and end indices for each match in the string let result = regex.captures_iter(string); for mat in result { println!("{:?}", mat); } }

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Rust, please visit: https://docs.rs/regex/latest/regex/