Regular Expressions 101

Save & Share

  • Regex Version: ver. 3
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
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]
  • 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

/
/
gm

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)\b(total)\b(?![\s\S]*\b\1\b)").unwrap(); let string = " total From: noreply@uber.com Uber Receipts To: Date: Sat, 7 May 2016 20:01:28 -0400 Subject: Your Saturday evening trip with Uber <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> <html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns=\"http://www.w3.org/1999/xhtml\"> <!-- FILE: html_start.html.mako --> <!-- FILE: head.html.mako --> <head> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /> <meta name=\"viewport\" content=\"width=device-width\" /> <!-- See the README file for an explanation of this media hack --> <style> /* This is the ink framework media query section */ @media only screen and (max-width: 655px) { table[class=\"body\"] center { min-width: 0 !important; } table[class=\"body\"] .container { width: 95% !important; } table[class=\"body\"] .row { width: 100% !important; display: block !important; } table[class=\"body\"] .wrapper { display: block !important; padding-right: 0 !important; } table[class=\"body\"] .columns, table[class=\"body\"] .column { table-layout: fixed !important; float: none !important; width: 100% !important; padding-right: 0px !important; padding-left: 0px !important; display: block !important; } table[class=\"body\"] .wrapper.first .columns, table[class=\"body\"] .wrapper.first .column { display: table !important; } table[class=\"body\"] table.columns td, table[class=\"body\"] table.column td { width: 100% !important; } table[class=\"body\"] td.offset-by-one, table[class=\"body\"] td.offset-by-two, table[class=\"body\"] td.offset-by-three, table[class=\"body\"] td.offset-by-four, table[class=\"body\"] td.offset-by-five, table[class=\"body\"] td.offset-by-six, table[class=\"body\"] td.offset-by-seven, table[class=\"body\"] td.offset-by-eight, table[class=\"body\"] td.offset-by-nine, table[class=\"body\"] td.offset-by-ten, table[class=\"body\"] td.offset-by-eleven { padding-left: 0 !important; } table[class=\"body\"] .expander { width: 9999px !important; } table[class=\"body\"] .right-text-pad, table[class=\"body\"] .text-pad-right { padding-left: 10px !important; } table[class=\"body\"] .left-text-pad, table[class=\"body\"] .text-pad-left { padding-right: 10px !important; } table[class=\"body\"] .hide-for-small, table[class=\"body\"] .show-for-desktop { display: none !important; } table[class=\"body\"] .show-for-small, table[class=\"body\"] .hide-for-desktop { display: inherit !important; } } @media print { .no-print-background { background: initial !important; } } </style> <style> @media only screen and (max-width: 665px) { .header.not-grid, .main{ margin: 0 auto !important; width: 304px !important; } .header.not-grid{ width: 100% !important; } .two-up td { width: 100% !important; } .address { display: block !important; } /* Scale each td to the full width below 600px */ table[class=\"container\"] .block-grid td { width: 100% !important; } /* When we actually want tabular data, don't scale it */ table[class=\"container\"] .block-grid td table.not-grid td { width: auto !important; } .header-greeting{ text-align: center !important; } .header-price{ text-align: center !important; padding: 20px 0 0 0 !important; } .header-greeting .header-text{ padding-right: 0 !important; line-height: 21px !important; text-align: center !important; } .header-greeting img{ float: none !important; margin: 0 0 -7px 0 !important; } .block-grid td.header-greeting{ padding: 5px 0 20px 0 !important; } .header-fare{ padding-left: 0 !important; text-align: center !important; } .block-grid td.trip-info{ padding-left: 0 !important; padding-right: 0 !important; } .route-map, .trip-box{ width: 100% !important; height: auto !important; border-right: 0 !important; border-left: 0 !important; } .trip-info-table{ width: 100% !important; margin: 0 !important; } table[class=\"container\"] .block-grid td.stats-holder{ width: 310px !important; } .block-grid td.trip-info{ padding-top: 0 !important; } .block-grid td.fare-details{ padding: 0 !important; } .breakdown{ padding: 10px 22px 40px 22px !important; } table[class=\"container\"] .block-grid table.not-grid td.driver-photo{ width: 100% !important; display: inline-block !important; text-align: center !important; padding-bottom: 5px !important; } .driver-photo img{ float: none !important; } table[class=\"container\"] .block-grid td table.not-grid td.vertical-line { width: 12px !important; } .trip-box.bottom{ -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; border-radius: 0 !important; } table.driver-info-table { display: inline-table !important; } table[class=\"container\"] .block-grid table.not-grid td.driver-info{ display: inline-block !important; width: 100% !important; padding: 0 !important; text-align: center !important; } .block-grid td.driver-area{ padding: 0 0 15px !important; background: #fafafa !important; border-bottom: 1px solid #f0f0f0 !important; } .block-grid td.driver-area .not-grid { width: 100% !important; } .block-grid td.rating-area{ text-align: center !important; background: #fafafa !important; padding: 25px 0 !important; line-height: 25px; -webkit-border-radius: 0 0 3px 3px; -moz-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; } .fare-details { width: 100% !important; } .etd-full-width { width: 302px !important; } .rating-area img{ float: none !important; margin: 0 5px !important; } .rate-text{ display: block !important; text-align: center !important; padding: 0 !important; } .rating-table{ padding: 10px 0px 13px 0px !important; } table.rating-table tr.rating-note-section { text-align: center !important; } table.rating-table td.rating-note { padding: 0 !important; } .bottom-box, .bottom-box.first{ padding-left: 0 !important; margin: 0 !important; padding-right: 0 !important; } .compliance-item{ text-align: center !important; } .bottom-box.first{ padding: 50px 0 25px !important; } .bottom-box .help-photo img, .bottom-box .share-photo img{ margin: 0 10px 0 2px !important; } .block-grid, .header.not-grid { max-width: 304px !important; margin: 0 auto !important; } .driver-photo img.user-photo{ margin: 0 !important; } .address{ line-height: 12px !important; } .block-grid td.time-section { line-height: 16px !important; } .block-grid .bottom-box.first td.help-info { border: 0 !important; } tr.share-section td.med-width{ width: 60% !important; padding-top: 5px !important; } img.share-icons{ padding: 3px 3px 0 12px !important; } .bottom-box .not-grid td.share-photo { width: 25px !important; } .block-grid td.header-price { -webkit-border-radius: 3px 3px 0 0 !important; -moz-border-radius: 3px 3px 0 0 !important; border-radius: 3px 3px 0 0 !important; } .block-grid td.header-price, .block-grid td.header-greeting{ background: #fff !important; } .block-grid table .not-grid.breakdown-title{ width: 100% !important; } .bottom-box .not-grid td.help-photo{ width: 50px !important; } table[class=\"container\"] .block-grid td table.not-grid td.fare-header{ width: 120px !important; } table.rating-table tr.rating-section { text-align: center !important; } .rating-wrap{ width: 100% !important; } table.rating-table .star-td-section { text-align: center !important; } .banner-td{ border-bottom: 0; border-top: 1px solid #F0F0F0; } .banner-td img.return-warning-icon { margin-top: 0 !important; } table[class=\"container\"] .block-grid td table td.banner-left{ width: inherit !important; padding: 10px !important; line-height: 16px !important; } table[class=\"container\"] .block-grid td table td.banner-image{ padding-right: 8px !important; } } /* Non-media query hacks */ /* Override style for time/addresses in iOS */ .time a{ text-decoration: none !important; color: #000000 !important; } .address a, .issued a { color: #959595 !important; text-decoration: none; } /* Override banner arrears anchor tag color */ .banner-arrears a, .banner-arrears a:visited{ color: #FFFFFF !important; } </style> </head> <!-- FILE: body_start.html.mako --> <body class=\"background no-print-background\" style=\"width: 100% !important; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #222222; font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: normal; text-align: left; line-height: 19px; font-size: 14px; background-image: url(http://uber-static.s3.amazonaws.com/receipt-new/grid_dark.png); background-color: #111125; margin: 0; padding: 0;\" bgcolor=\"#111125\"><style type=\"text/css\"> a:hover { color: #2795b6 !important; } a:active { color: #2795b6 !important; } a:visited { color: #2ba6cb !important; } h1 a:active { color: #2ba6cb !important; } h2 a:active { color: #2ba6cb !important; } h3 a:active { color: #2ba6cb !important; } h4 a:active { color: #2ba6cb !important; } h5 a:active { color: #2ba6cb !important; } h6 a:active { color: #2ba6cb !important; } h1 a:visited { color: #2ba6cb !important; } h2 a:visited { color: #2ba6cb !important; } h3 a:visited { color: #2ba6cb !important; } h4 a:visited { color: #2ba6cb !important; } h5 a:visited { color: #2ba6cb !important; } h6 a:visited { color: #2ba6cb !important; } table.button:hover td { background: #2795b6 !important; } table.button:visited td { background: #2795b6 !important; } table.button:active td { background: #2795b6 !important; } table.button:hover td a { color: #fff !important; } table.button:visited td a { color: #fff !important; } table.button:active td a { color: #fff !important; } table.button:hover td { background: #2795b6 !important; } table.tiny-button:hover td { background: #2795b6 !important; } table.small-button:hover td { background: #2795b6 !important; } table.medium-button:hover td { background: #2795b6 !important; } table.large-button:hover td { background: #2795b6 !important; } table.button:hover td a { color: #ffffff !important; } table.button:active td a { color: #ffffff !important; } table.button td a:visited { color: #ffffff !important; } table.tiny-button:hover td a { color: #ffffff !important; } table.tiny-button:active td a { color: #ffffff !important; } table.tiny-button td a:visited { color: #ffffff !important; } table.small-button:hover td a { color: #ffffff !important; } table.small-button:active td a { color: #ffffff !important; } table.small-button td a:visited { color: #ffffff !important; } table.medium-button:hover td a { color: #ffffff !important; } table.medium-button:active td a { color: #ffffff !important; } table.medium-button td a:visited { color: #ffffff !important; } table.large-button:hover td a { color: #ffffff !important; } table.large-button:active td a { color: #ffffff !important; } table.large-button td a:visited { color: #ffffff !important; } table.secondary:hover td { background: #d0d0d0 !important; color: #555 !important; } table.secondary:hover td a { color: #555 !important; } table.secondary td a:visited { color: #555 !important; } table.secondary:active td a { color: #555 !important; } table.success:hover td { background: #457a1a !important; } table.alert:hover td { background: #970b0e !important; } .time a:visited { font-size: 15px !important; font-weight: 500 !important; color: #000000 !important; } .address a:visited { font-size: 11px !important; color: #999999 !important; line-height: 16px !important; text-decoration: none !important; } .block-grid td.help-info .issued a:visited { font-size: 11px !important; text-decoration: underline !important; color: #b2b2b2 !important; } .driver-header-text a:visited { text-decoration: underline !important; color: #1fbad6 !important; } .driver-signup-link:hover { cursor: pointer !important; } &gt;</style> <table class=\"body\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; height: 100%; width: 100%; color: #222222; font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"center\" align=\"center\" valign=\"top\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; padding: 0;\"> <center style=\"width: 100%; min-width: 580px;\"> <!-- FILE: content_start.html.mako --> <table class=\"container\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 660px; margin: 0 auto; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; padding: 0;\" align=\"left\" valign=\"top\"> <!-- FILE: banner.html.mako --> <table class=\"header not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 640px; margin: 0 10px; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"logo\" width=\"127\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; padding: 28px 0;\" align=\"left\" valign=\"top\"> <img width=\"127\" height=\"19\" id=\"cid_uber_logo\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/logo-updated-white.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block;\" align=\"left\" /> </td> <td class=\"date-section\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; font-size: 11px; color: #999999; line-height: 15px; text-transform: uppercase; padding: 30px 0 26px;\" align=\"right\" valign=\"top\"> <span class=\"date\">May 7, 2016</span> </td> </tr> </table> <table class=\"block-grid main\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 640px; max-width: 640px; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.20); -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.20); box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.20); background-color: #ffffff; margin: 0 10px; padding: 0;\" bgcolor=\"#ffffff\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"no-padding full-width\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 100%; padding: 0;\" align=\"left\" valign=\"top\"> <!-- Header and fare --> <table class=\"block-grid two-up divider header-table\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; max-width: 640px; border-bottom-width: 1px; border-bottom-color: #E3E3E3; border-bottom-style: solid; padding: 0;\"> <tr class=\"grey\" style=\"vertical-align: top; text-align: left; width: 100%; background-color: rgb(250,250,250); padding: 0;\" align=\"left\" bgcolor=\"rgb(250,250,250)\"> <td class=\"header-price\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 299px; -webkit-border-radius: 3px 0 0 0; -moz-border-radius: 3px 0 0 0; border-radius: 3px 0 0 0; background-color: #FAFAFA; padding: 26px 10px 20px;\" align=\"left\" bgcolor=\"#FAFAFA\" valign=\"top\"> <span class=\"header-fare text-pad\" style=\"font-weight: bold; font-size: 32px; color: #000; line-height: 30px; padding-left: 15px;\"> $16.60 </span> <!-- There cannot be a new line between these tds or some clients (e.g gecko based) freak out--> </td><td class=\"pull-right header-greeting\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: inline-block; width: 299px; -webkit-border-radius: 0 3px 0 0; -moz-border-radius: 0 3px 0 0; border-radius: 0 3px 0 0; background-color: #FAFAFA; padding: 26px 10px 20px;\" align=\"right\" bgcolor=\"#FAFAFA\" valign=\"top\"> <span class=\"header-text\" style=\"padding-right: 15px; line-height: 10px; font-size: 13px; font-weight: normal; color: #b2b2b2;\">Thanks for choosing Uber, Sujay</span> </td> </tr> </table> <!-- Map and fare details --> <table class=\"block-grid two-up divider\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; max-width: 640px; border-bottom-width: 1px; border-bottom-color: #f0f0f0; border-bottom-style: solid; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <!-- Map + to/from --> <td class=\"trip-info\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 300px; padding: 25px 10px 25px 5px;\" align=\"left\" valign=\"top\"> <table class=\"trip-info-table\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; margin-left: 19px; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"no-padding\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 300px; padding: 0;\" align=\"left\" valign=\"top\"> <img class=\"route-map\" width=\"279\" height=\"217\" id=\"map_fce132c6-0c79-4341-a625-6684399fd41e\" src=\"cid:map_fce132c6-0c79-4341-a625-6684399fd41e\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: none; clear: none; display: block; width: 279px; height: 217px; -webkit-border-radius: 3px 3px 0 0; -moz-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; border: 1px solid #d7d7d7;\" align=\"none\" /> </td> </tr> <!-- etd --> <tr class=\"trip-box trip-details\" style=\"vertical-align: top; text-align: left; width: 279px; display: block; background-color: #FAFAFA; padding: 20px 0; border-color: #e3e3e3; border-style: solid; border-width: 1px 1px 0px;\" align=\"left\" bgcolor=\"#FAFAFA\"> <td class=\"no-padding\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 220px; padding: 0;\" align=\"left\" valign=\"top\"> <table class=\"not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: auto; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td rowspan=\"4\" class=\"vertical-line\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 17px !important; padding: 3px 18px 10px 17px;\" align=\"left\" valign=\"top\"> <img width=\"13\" id=\"route\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/route.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block;\" align=\"left\" /> </td> <td class=\"time-section\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 220px; line-height: 16px; height: 57px; padding: 0 10px 10px 0;\" align=\"left\" valign=\"top\"> <span class=\"from time\" style=\"font-size: 15px; font-weight: 500; color: #000000 !important;\">07:37pm</span><br /> <span class=\"address\" style=\"font-size: 11px; color: #999999 !important; line-height: 16px; text-decoration: none;\">1328 Campus Dr, Durham, NC</span> </td> </tr> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"time-section\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 220px; line-height: 16px; height: 57px; padding: 0 10px 10px 0;\" align=\"left\" valign=\"top\"> <span class=\"to time\" style=\"font-size: 15px; font-weight: 500; color: #000000 !important;\">07:59pm</span><br /> <span class=\"address\" style=\"font-size: 11px; color: #999999 !important; line-height: 16px; text-decoration: none;\">American Tobacco Trail, Durham, NC</span> </td> </tr> </table> </td> </tr> <tr class=\"trip-box bottom\" style=\"vertical-align: top; text-align: left; width: 279px; display: block; background-color: #FAFAFA; padding: 0; border: 1px solid #e3e3e3;\" align=\"left\" bgcolor=\"#FAFAFA\"> <td class=\"no-padding stats-holder\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell !important; width: 279px !important; padding: 0;\" align=\"left\" valign=\"top\"> <table class=\"trip-stats not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; color: #959595; line-height: 14px; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"trip-box-data\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; display: table-cell !important; width: 33% !important; line-height: 16px; padding: 6px 10px 10px;\" align=\"center\" valign=\"top\"> <span class=\"label\" style=\"font-size: 9px; text-transform: uppercase;\">CAR</span><br /> <span class=\"data\" style=\"font-size: 13px; color: #111125; font-weight: normal;\">uberX</span> </td> <td class=\"trip-box-data\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; display: table-cell !important; width: 33% !important; line-height: 16px; padding: 6px 10px 10px;\" align=\"center\" valign=\"top\"> <span class=\"label\" style=\"font-size: 9px; text-transform: uppercase;\">miles</span><br /> <span class=\"data\" style=\"font-size: 13px; color: #111125; font-weight: normal;\">15.25</span> </td> <td class=\"trip-box-data\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; display: table-cell !important; width: 33% !important; line-height: 16px; padding: 6px 10px 10px;\" align=\"center\" valign=\"top\"> <span class=\"label\" style=\"font-size: 9px; text-transform: uppercase;\">TRIP TIME</span><br /> <span class=\"data\" style=\"font-size: 13px; color: #111125; font-weight: normal;\">00:22:21</span> </td> </tr> </table> </td> </tr> </table> </td> <!-- Fare details --> <td class=\"fare-details\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 300px; padding: 10px;\" align=\"left\" valign=\"top\"> <span class=\"breakdown\" style=\"display: block; padding: 0px 8px 0 10px;\"> <table class=\"breakdown-title not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100% !important; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"line left\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: middle; text-align: left; display: table-cell; width: auto !important; padding: 12px 0 5px;\" align=\"left\" valign=\"middle\"><p style=\"color: #222222; font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: normal; text-align: left; line-height: 0; font-size: 14px; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E3E3E3; display: block; margin: 0; padding: 0;\" align=\"left\"></p></td> <td class=\"fare-header\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: middle; text-align: center; display: table-cell; width: 120px !important; font-size: 11px; white-space: pre; padding: 12px 10px 5px;\" align=\"center\" valign=\"middle\">FARE BREAKDOWN</td> <td class=\"line right\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: middle; text-align: left; display: table-cell; width: auto !important; padding: 12px 0 5px;\" align=\"left\" valign=\"middle\"><p style=\"color: #222222; font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: normal; text-align: left; line-height: 0; font-size: 14px; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #E3E3E3; display: block; margin: 0; padding: 0;\" align=\"left\"></p></td> </tr> </table> <table class=\"fare-details not-grid fare-breakdown\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; margin-top: 15px; width: auto; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"line-item\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 300px; color: #808080; padding: 4px;\" align=\"left\" valign=\"top\"> Base Fare </td> <td class=\"price\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 90px; white-space: nowrap; padding: 4px;\" align=\"right\" valign=\"top\">1.00</td> </tr> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"line-item\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 300px; color: #808080; padding: 4px;\" align=\"left\" valign=\"top\"> Distance </td> <td class=\"price\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 90px; white-space: nowrap; padding: 4px;\" align=\"right\" valign=\"top\">10.67</td> </tr> <tr class=\"divider\" style=\"vertical-align: top; text-align: left; border-bottom-width: 1px; border-bottom-color: #f0f0f0; border-bottom-style: solid; width: 100%; padding: 0;\" align=\"left\"> <td class=\"line-item\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 300px; color: #808080; padding: 4px 4px 15px;\" align=\"left\" valign=\"top\"> Time </td> <td class=\"price\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 90px; white-space: nowrap; padding: 4px 4px 15px;\" align=\"right\" valign=\"top\">3.13</td> </tr> <tr class=\"total\" style=\"vertical-align: top; text-align: left; font-weight: bold; width: 100%; padding: 0;\" align=\"left\"> <td class=\"line-item\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 300px; color: #111125; padding: 15px 4px 4px;\" align=\"left\" valign=\"top\">Subtotal</td> <td class=\"price\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 90px; white-space: nowrap; padding: 15px 4px 4px;\" align=\"right\" valign=\"top\">$14.80</td> </tr> <tr class=\"price-adjustment divider\" style=\"vertical-align: top; text-align: left; border-bottom-width: 1px; border-bottom-color: #f0f0f0; border-bottom-style: solid; width: 100%; padding: 0;\" align=\"left\"> <td class=\"line-item\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 300px; color: #808080; font-size: 11px; padding: 4px 4px 15px;\" align=\"right\" valign=\"top\"> Booking Fee <span>(<a href=\"https://email.uber.com/wf/click?upn=QDYQ7MQTBF5X8FekeHanzSwpYg9UGp6524u2IoP26VAeMQSkwhUXtzdpbVBVoOXR_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRaE3GKlwz9VuMOOvtxa86VtklPcknDXKgyCORX3xBeWmEeOqZ1QG3D9PAkvfUxrj-2FrdzgvwoYxjbZbcT-2FSDyot3u9XgPvtnTseTGSnuzGcWQOkUKohXplF-2Bg8YJaM7FVZ2oHJfrkNe5PcRSxh8HyFo8Iq-2FivQRngsEz6uqFuukNSnVQD7rrj3-2FI85LIbG-2BQP7w-3D-3D\" style=\"color: #2ba6cb; text-decoration: none;\">?</a>)</span> </td> <td class=\"price charge\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 90px; white-space: nowrap; color: #222222; font-weight: bold; padding: 4px 4px 15px;\" align=\"right\" valign=\"top\"> 1.80 </td> </tr> <tr class=\"divider final-total\" style=\"vertical-align: top; text-align: left; border-bottom-width: 1px; border-bottom-color: #f0f0f0; border-bottom-style: solid; width: 100%; padding: 0;\" align=\"left\"> <td class=\"line-item charged\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 300px; color: #808080; line-height: 18px; padding: 15px 4px;\" align=\"left\" valign=\"top\"> <span class=\"charge-label\" style=\"font-size: 9px; line-height: 7px;\">CHARGED</span> <br /> <img id=\"visa_icon\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt/visa_24.png\" class=\"card-image\" width=\"17\" height=\"12\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; width: 17px !important; height: 12px; margin-right: 5px; margin-top: 3px;\" align=\"left\" /> <span class=\"card-detail\" style=\"font-size: 13px;\"> Personal &bull;&bull;&bull;&bull; 9040 </span> </td> <td class=\"price final-charge\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 90px; white-space: nowrap; font-size: 19px; font-weight: bold; line-height: 30px; padding: 26px 4px 15px;\" align=\"right\" valign=\"top\"> $16.60 </td> </tr> </table> <table class=\"not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: auto; padding: 0;\"> <tr class=\"\" style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"client-savings\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; display: table-cell; width: 300px; font-size: 15px; padding: 16px 10px 0px;\" align=\"center\" valign=\"top\"> <span></span> </td> </tr> </table> <span class=\"trip_reference\" style=\"line-height: 1px; font-size: 1px; color: #FFFFFF;\">xidfce132c6-0c79-4341-a625-6684399fd41e</span> <br /> <span class=\"zd_receipt_identifier\" style=\"line-height: 1px; font-size: 1px; color: #FFFFFF;\">pGvlI2ANUbXFfyEOgxta1RMV082993</span> </span> </td> </tr> </table> <table class=\"block-grid two-up divider\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; max-width: 640px; border-bottom-width: 1px; border-bottom-color: #f0f0f0; border-bottom-style: solid; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"driver_block\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 50%; padding: 0px;\" align=\"left\" valign=\"top\"> <!-- Driver and stats --> <table class=\"block-grid driver-info-table\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; max-width: 640px; display: inline-block; padding: 0;\"> <tr class=\"driver-section\" style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"driver-area\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 100% !important; line-height: 15px; padding: 0px 0px 0px 10px;\" align=\"left\" valign=\"top\"> <table class=\"not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: auto; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"driver-photo\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 45px; padding: 22px 0px 20px;\" align=\"left\" valign=\"top\"><img class=\"user-photo\" width=\"45\" height=\"45\" id=\"driver_fce132c6-0c79-4341-a625-6684399fd41e\" src=\"https://d1w2poirtb3as9.cloudfront.net/af6cc2e0714bd8f2c86d.jpeg\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: inline-block; width: 45px !important; height: 45px !important; -webkit-border-radius: 50em; -moz-border-radius: 50em; border-radius: 50em; margin-top: -1px; margin-left: 15px; max-width: 45px !important; min-width: 45px !important; border: 1px solid #d7d7d7;\" align=\"left\" /></td> <td class=\"driver-info\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: middle; text-align: left; display: table-cell; width: 300px; padding: 22px 10px 20px;\" align=\"left\" valign=\"middle\"> <span class=\"driver-header-text\" style=\"padding-bottom: 5px; display: inline-block;\">You rode with MONIQUE</span> </td> </tr> </table> </td> </tr> </table> </td> <td class=\"rating_block\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 50%; height: 100%; padding: 10px 0px 0px;\" align=\"left\" valign=\"top\"> <!-- Rating section --> <table class=\"block-grid rating-table\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; max-width: 640px; display: block; padding: 0px;\"> <tbody class=\"rating-table-body\" style=\"width: 100%; display: block;\"> <tr class=\"rating-note-section\" style=\"vertical-align: top; text-align: right; width: 100%; display: inline-block; padding: 6px 0 0;\" align=\"right\"> <td class=\"rating-note\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: inline; width: auto; font-size: 9px; color: #b2b2b2; text-transform: uppercase; padding: 0px 15px 0px 0px;\" align=\"right\" valign=\"top\"><span>Rate Your Driver</span></td> </tr> <tr class=\"rating-section\" style=\"vertical-align: top; text-align: right; width: 100%; display: block; padding: 0px;\" align=\"right\"> <td class=\"star-td-section\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 136px; padding: 5px 10px 5px 0px;\" align=\"left\" valign=\"top\"> <span class=\"rating-star\" style=\"font-size: 11px; width: 20px !important; height: 20px; display: inline-block !important; padding: 0px 2px;\"><a href=\"https://email.uber.com/wf/click?upn=E5Fht-2Bzc2SrMWnjw-2Brx3-2BODA-2FCWoVln5hONw2cjtUe85lQoen0XOUdcjv8t7eEe4xPmbmJOXWl-2B9XDdzxM9RU-2FHFCTuky2LNGdo2rfCF34X31BCal06-2Bafw0KLotrtXLhfuRV1T-2BB1g166GrMlArumOHHdvm8vKAeVdutJX66TBjVLBqP-2Fmvc1CUbF1S3MfuV28-2BRHlghPo6GuBLXz6MVDH5717-2BLmTCgVqbeu1Ryck-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRQIX6lGOXmbDYw5iLhndxVKb78d4GUEhuHwgJ2sOQCavyouFE66p9BapRTU8jcKz7yhZIHKUWk-2BezAJLjlMOC9DIN5BeZJaG8PxRBnyWtREll5W500xNaV5vhSTUFqvYZ44-2Fj9Y0Jm7Bs-2FClfhV5hE9foeDrQJvTXsuOXbx1kFgmG5U6VmJQdsXjKTcZ-2Bom5Gw-3D-3D\" style=\"color: #2ba6cb; text-decoration: none;\"><img class=\"star-icon\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/star@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; width: 20px; border: none;\" align=\"left\" /></a></span> <span class=\"rating-star\" style=\"font-size: 11px; width: 20px !important; height: 20px; display: inline-block !important; padding: 0px 2px;\"><a href=\"https://email.uber.com/wf/click?upn=E5Fht-2Bzc2SrMWnjw-2Brx3-2BODA-2FCWoVln5hONw2cjtUe85lQoen0XOUdcjv8t7eEe4xPmbmJOXWl-2B9XDdzxM9RU-2FHFCTuky2LNGdo2rfCF34X31BCal06-2Bafw0KLotrtXLhfuRV1T-2BB1g166GrMlArumOHHdvm8vKAeVdutJX66TBjVLBqP-2Fmvc1CUbF1S3MfuV28-2BRHlghPo6GuBLXz6MVGGz8yPkPkVn3g7zptUumbU-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRRvFKtGvA-2FZ1CiYf0duKfPCoYyY2sk9dEZUpyQqcC6BRZwl5-2FRza1NsgFFEsu3GqW5MS3-2BaszlZnsI7qhXvJEZaClci2-2FMEDpIqBGGlaGpWn1Yur5aGALl6B4O3VZSFPyKgI-2B-2FfKIdIpGt-2F6nrYMVzp2AIaY0q1qCJzeMw3q9bpPKXbBGDSO-2F1bHkXJBN5Pygw-3D-3D\" style=\"color: #2ba6cb; text-decoration: none;\"><img class=\"star-icon\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/star@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; width: 20px; border: none;\" align=\"left\" /></a></span> <span class=\"rating-star\" style=\"font-size: 11px; width: 20px !important; height: 20px; display: inline-block !important; padding: 0px 2px;\"><a href=\"https://email.uber.com/wf/click?upn=E5Fht-2Bzc2SrMWnjw-2Brx3-2BODA-2FCWoVln5hONw2cjtUe85lQoen0XOUdcjv8t7eEe4xPmbmJOXWl-2B9XDdzxM9RU-2FHFCTuky2LNGdo2rfCF34X31BCal06-2Bafw0KLotrtXLhfuRV1T-2BB1g166GrMlArumOHHdvm8vKAeVdutJX66TBjVLBqP-2Fmvc1CUbF1S3MfuV28-2BRHlghPo6GuBLXz6MVE0rCkiZn-2Fdgmc8C3j5d6G4-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRZ8WXe9kdl9EVUotzMlAXOnImA6kbuTgMZ1NpH3vbBfrJIku5EhfsxuqqstLWWAiLtLHHDT-2B4X7-2BGyJP0wl8iXFkGXHqJ-2FuVBFxt0OJYfKVbaN1-2BmPqkXjGfcnJbcINrE5rWGRE0hX6J15CiOkl8-2B0SzKOTIoYDRdF7rU97DK2OGnuqmwA7H-2FbFSf7tLXnnODw-3D-3D\" style=\"color: #2ba6cb; text-decoration: none;\"><img class=\"star-icon\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/star@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; width: 20px; border: none;\" align=\"left\" /></a></span> <span class=\"rating-star\" style=\"font-size: 11px; width: 20px !important; height: 20px; display: inline-block !important; padding: 0px 2px;\"><a href=\"https://email.uber.com/wf/click?upn=E5Fht-2Bzc2SrMWnjw-2Brx3-2BODA-2FCWoVln5hONw2cjtUe85lQoen0XOUdcjv8t7eEe4xPmbmJOXWl-2B9XDdzxM9RU-2FHFCTuky2LNGdo2rfCF34X31BCal06-2Bafw0KLotrtXLhfuRV1T-2BB1g166GrMlArumOHHdvm8vKAeVdutJX66TBjVLBqP-2Fmvc1CUbF1S3MfuV28-2BRHlghPo6GuBLXz6MVIsWUvVb-2FnkCJDRlnrsuX6I-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRUVTw5HxUsBZfyYeCElpUGfrKIJpypZXmwUWu-2FEElkurrXssBTDF9d484NO0lQIdkk8-2F-2B2HY3mEn2ZmMTwyEEeAGtvGe0RW1a-2FA1caZ75-2BznHJrYu2GznW85MhcpGtZ-2BnRSEgqYrl-2F0QNqiPeqlGDsXhBkU9w9obZplc-2FnGqzF3nv8AxFhT-2FxrsCpL-2Bu8OAShQ-3D-3D\" style=\"color: #2ba6cb; text-decoration: none;\"><img class=\"star-icon\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/star@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; width: 20px; border: none;\" align=\"left\" /></a></span> <span class=\"rating-star\" style=\"font-size: 11px; width: 20px !important; height: 20px; display: inline-block !important; padding: 0px 2px;\"><a href=\"https://email.uber.com/wf/click?upn=E5Fht-2Bzc2SrMWnjw-2Brx3-2BODA-2FCWoVln5hONw2cjtUe85lQoen0XOUdcjv8t7eEe4xPmbmJOXWl-2B9XDdzxM9RU-2FHFCTuky2LNGdo2rfCF34X31BCal06-2Bafw0KLotrtXLhfuRV1T-2BB1g166GrMlArumOHHdvm8vKAeVdutJX66TBjVLBqP-2Fmvc1CUbF1S3MfuV28-2BRHlghPo6GuBLXz6MVPwBfSqrGubPwNOwy0Oy-2FEs-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRaCl5Ml73GWK8BSjWE-2B2CN-2B5gLmq8mpb3cZNxB3iJvsBgK9lMF60AfT9VsgqxcAKE-2FyNsQttczrmNrT-2FZgidOmOMvOwF9n0YMCeeoVNQJf-2B21vy8UpQAdhIIKlMJeKwxsxm9tX5pLQwBq1JZKwreBz2DIMuGkbju9ibLN0AN9sDNcv39eaG1OuEPZHkUVebyNA-3D-3D\" style=\"color: #2ba6cb; text-decoration: none;\"><img class=\"star-icon\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/star@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; width: 20px; border: none;\" align=\"left\" /></a></span> </td> </tr> </tbody> </table> </td> </tr> </table> </td> </tr> </table> <!-- FILE: content_end.html.mako --> </td> </tr> </table> <!-- FILE: boxes.html.mako --> <table class=\"container block-grid two-up footer\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 640px; max-width: 640px; margin: 0 auto; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"bottom-box first\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 319px !important; height: 35px; font-size: 12px; padding: 25px 0 40px;\" align=\"left\" valign=\"top\"> <table class=\"not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"help-photo\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 25px; padding: 7px 9px 7px 3px;\" align=\"left\" valign=\"top\"><img id=\"cid_support\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/support@2x.png\" width=\"45\" height=\"41\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; margin-right: 7px;\" align=\"left\" /></td> <td class=\"help-info\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 300px; line-height: 16px; color: #1fbad6; font-size: 14px; border-right-color: #414151; border-right-width: 1px; border-right-style: solid; padding: 4px 0 0;\" align=\"left\" valign=\"top\"> <span class=\"driver-header-text\" style=\"padding-bottom: 5px; display: inline-block;\">Need help?</span> <span class=\"issued\" style=\"font-size: 11px; color: #b2b2b2; display: inline-block;\">Tap Help in your app to <a href=\"https://email.uber.com/wf/click?upn=ITf-2BUi9bO5sUhPgUfzyAxmHd0Ofxffga-2FDItbItpgC4-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRe9uxRl9kmrR0D0SmTfOXD1LBPPX4stLI4296fSLRUDXiF4F8yLGsGUHlyRHczwcf-2BNklwV-2F-2BMxvE6jjFPGJSxTv1qX-2FV-2BQgnhia29x1oiK-2FIXU6ari-2BKubI5K3AsowQFOud2eDYs3YK-2FIWoYHIpjb75aobPcoAXjrfUQl98G8WoSxYUVYmks0LMoLMdGSyQIg-3D-3D\" style=\"color: #b2b2b2 !important; text-decoration: underline; font-size: 11px;\">contact us</a> with questions about your trip.</span> <span class=\"issued\" style=\"font-size: 11px; color: #b2b2b2; display: inline-block;\">Leave something behind? <a href=\"https://email.uber.com/wf/click?upn=E5Fht-2Bzc2SrMWnjw-2Brx3-2BDcqdpWOGyGqCNkFSSazGG7a9zwJlcS0D9SnKsWKQk8M_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRfYW2B4g-2FXx0k30OmlVDosWNlft1Kqt4aVu1rXwBx-2Bq-2BmKmPN02UiCtWMwcDejei1LgRBfIgg8k6znh6tOs5qhERwToNqvw3x8gbkxn8dHywtM8loAK0U95YUKVgng-2FlogKpSXyB28U7FOOtytec-2BQG4Mvv9-2BbRCCjEBg9DC4hgut6upUXknqPQHX4HXgzzwNg-3D-3D\" style=\"color: #b2b2b2 !important; text-decoration: underline; font-size: 11px;\">Track it down.</a></span> </td> </tr> </table> <!-- Line break between tds breaks things --> </td><td class=\"bottom-box\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: inline-block; width: 319px !important; height: 35px; font-size: 12px; padding: 25px 0 40px;\" align=\"left\" valign=\"top\"> <table class=\"not-grid\" style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"share-photo\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 53px; padding: 1px 9px 7px 3px;\" align=\"left\" valign=\"top\"><img id=\"cid_share_logo\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/give@2x.png\" width=\"34\" height=\"36\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: left; clear: both; display: block; margin: 6px 8px 0 30px;\" align=\"left\" /></td> <td class=\"help-info\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 300px; line-height: 16px; color: #1fbad6; font-size: 14px; padding: 7px 0 0;\" align=\"left\" valign=\"top\"> <table style=\"border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; padding: 0;\"> <tr style=\"vertical-align: top; text-align: left; width: 100%; padding: 0;\" align=\"left\"> <td class=\"large-width\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 500px !important; padding: 0;\" align=\"left\" valign=\"top\"> <span class=\"driver-header-text\" style=\"padding-bottom: 5px; display: inline-block;\">Free Rides</span> </td> </tr> <tr class=\"share-section\" style=\"vertical-align: top; text-align: left; width: 100%; display: block; padding: 0;\" align=\"left\"> <td class=\"med-width\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; display: table-cell; width: 63%; padding: 5px 0 0;\" align=\"left\" valign=\"top\"> <span class=\"issued invite\" style=\"font-size: 11px; color: #b2b2b2; display: inline-block;\"> <span class=\"invite-span\" style=\"text-align: left;\"> Share code: sujayg88ue </span> </span></td> <td class=\"sm-width\" style=\"word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: right; display: table-cell; width: 300px; padding: 0;\" align=\"right\" valign=\"top\"> <span class=\"issued share-icon-span\" style=\"font-size: 11px; color: #b2b2b2; display: inline-block; text-align: right;\"> <a href=\"https://email.uber.com/wf/click?upn=V7T3gCRxaCYUcgZcra9fG2HyIjnxDfjdf2Ma-2FIjNCLDlCH7dMRkSFFGp90Cnbu-2BXK5cFbMmHi6EJe8urVRbf2YrhE6Q3II9PtC12M02AarU-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwReelRnvJ-2FlaXT7NZIe4AvZg5Q50f-2F03lzJ0B1Qtqyqe2EL8IW6JIFSR-2BtjzdnxTKgDpnEE416V35NUopZsTImmlkE7HotJLWqJR0LBAZ4ltcSEK61efTpyUZJ88u1oj-2FWm6aPkmDWsKPLike-2FQfx8ifjMXkjTl2X8mplXs3RP-2FnTLmnSOkyeRg9vRds2-2BbXueg-3D-3D\" target=\"_blank\" style=\"color: #b2b2b2 !important; text-decoration: underline; font-size: 11px;\"> <img width=\"8\" height=\"16\" class=\"share-icons\" id=\"cid_share_facebook\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/facebook@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: none; clear: none; display: inline; padding: 3px 0 0 10px; border: none;\" align=\"none\" /> </a> <a href=\"https://email.uber.com/wf/click?upn=zGdTI6oMWm9R1S3upgsC6JUrV-2B63GQ3U4egqqvHGkHtRo9Cnp2UpbSAzgxjzIUO8QH17iEUwxyGeC-2B0O-2ByyXOabZQh-2BuOA-2FI7KO0VQEQY7J2xzlJeGftexbFeQio5268xhJCf37XMjeEG8S34cEy1TRx7QrynTCxUugl7-2BT5ZskAJi2tYxt2VwjUYitD-2BKavEyQ1melPQWuzaVIxtdTlarI5r9a3XN-2BoCibAXvKvsdrKoJkXpGqAn-2FgGk4GewexGoCHfri6EEoG-2BSBOWdoSv5Q-3D-3D_HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRXoZct92U2TPdPPGU6RbEqbXkgRxsqo9e7ZNHAIZ1gcCUxaW84dcgu-2BluwMuWz18YDL0is-2Fb0Vydo-2FjI8YQbQnBkPw1L5eUnh3uxcOUSMRPQPFFrVMM7fdokYW7rHC3vUmoZokAfSJXDCZuRF-2FDaRm0JEfS2m-2Bek-2FF6IPRP-2BPxxRDtQnw7nnuJpcPpV3yL50xQ-3D-3D\" target=\"_blank\" style=\"color: #b2b2b2 !important; text-decoration: underline; font-size: 11px;\"> <img width=\"17\" height=\"14\" class=\"share-icons\" id=\"cid_share_twitter\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/twitter@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: none; clear: none; display: inline; padding: 3px 0 0 10px; border: none;\" align=\"none\" /> </a> <a href=\"mailto:?subject=a free Uber ride (worth up to $20)&body=I’m giving you a free ride on the Uber app (up to $20). To accept, use code 'sujayg88ue' to sign up. Enjoy! Details: https://www.uber.com/invite/sujayg88ue\" style=\"color: #b2b2b2 !important; text-decoration: underline; font-size: 11px;\"> <img width=\"20\" height=\"12\" class=\"share-icons\" id=\"cid_share_email\" src=\"http://d1a3f4spazzrp4.cloudfront.net/receipt-new/mail@2x.png\" style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; float: none; clear: none; display: inline; padding: 3px 0 0 10px; border: none;\" align=\"none\" /> </a></span> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <!-- FILE: driver_signup.html.mako --> <!-- FILE: zero_tolerance.html.mako --> <!-- FILE: disclaimer.html.mako --> <!-- FILE: body_end.html.mako --> </center> </td> </tr> </table> <img src=\"https://email.uber.com/wf/open?upn=HeFSIazWPned6E3R2k7gETCGPwG1ha-2B3mtKNauwNdvLNWQbCmzLo4TwRo05T6DMXEQS4vkpNsnH64645AxdbAAEmywVk1TkWIo4Ip7nUv8H-2BREKRvOE3iJL8vBFuVg2B28VnBFTYAD0UAxat279aSlU76-2F9K0QYhWGOcIfiYJpPfkMJskG9jzputfq7HsKGtHznnP8Dsx0h5n3-2Bc8oUtBOjvT2yme2dZEDR2Q7qNTMqEqe80tb02u6-2BUhPIL7m2roD6ExhILF0L1QarEAe4dRhu5sxxbEaVwSdC0bzRtsPiJJEkPuRtyfBWWmR2F5RdzVeEydV71nuSoP8Pq1rCqJght5-2BmWgWIEGLhNU1oYWq1Ie8syk0WxCqccmCXdcYLZCoQ5FYREBE-2F8s50JEiKwRW7mJ-2BDJDOV-2BzSUKJo79tqiEdT1xbAkdbmv9G27gb41OE9frUCIp-2BsMEYh8kLwCIwrf95oj9jNAJLYz6CPw-2B-2Bzsy-2B72owjJa6lG13A9cp4asTsR3zXp-2Bu5Bojcd2nglrBlmVb0NB1lOTB2UuTmTqookl51oO7lRlfOSrA20DTUihEngBtTlrWTE36plNpfZiGg-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/> </body> total <!-- FILE: html_end.html.mako --> </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/