description
stringlengths
0
8.24k
regex
stringlengths
1
26.3k
text
stringlengths
0
2.47M
title
stringlengths
1
150
created_at
stringlengths
24
24
This PHP regex will match any string that contains Indic character combinations known to crash many iOS applications as of 11.2.5 and certain macOS combinations as of 10.13.3. The crash occurs in CoreText. # Notes # This regex will only work if you use the `x` and `u` modifiers. Example: "{regex-goes-here}xu" While PHP does use PCRE, the `u` modifier isn't technically Perl-compatible. For this to work without the `u` modifier, the regex would need to be adapted to use | instead of [], as all of these characters are multibyte in all popular web encodings, e.g. UTF-8. # Vuln info # Tracked By: [rdar://37458268](https://openradar.appspot.com/37458268) Date Originated: 2018-02-12 CVE ID: Unknown as of writing # Credits # Adapted for PHP by Paul Buonopane of [NamePros](https://www.namepros.com/). Based heavily on the following works: - https://github.com/hackbunny/viramarama - https://manishearth.github.io/blog/2018/02/15/picking-apart-the-crashing-ios-string/ # License # The license for [the work on which this regex is based](https://github.com/hackbunny/viramarama) is provided below, with an additional note regarding adaptation. Copyright 2018 hackbunny <hackbunny@gmail.com> Adapted for PHP by Paul Buonopane Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
(?# # Adapted for PHP by Paul Buonopane of NamePros https://www.namepros.com/ # Based heavily on the following works: # - https://manishearth.github.io/blog/2018/02/15/picking-apart-the-crashing-ios-string/ # - https://github.com/hackbunny/viramarama # # This PHP regex will match any string that contains Indic character # combinations known to crash many iOS applications as of 11.2.5 and certain # macOS combinations as of 10.13.3. # # IMPORTANT: This will only work if you use the `x` and `u` modifiers. # Example: "{regex-goes-here}xu" # # COMPATIBILITY: While PHP does use PCRE, the `u` modifier isn't technically # Perl-compatible. For this to work without the `u` modifier, # the regex would need to be adapted to use | instead of [], # as all of these characters are multibyte in all popular web # encodings, e.g. UTF-8. # # Tracked By: rdar://37458268 # https://openradar.appspot.com/37458268 # Date Originated: 2018-02-12 # CVE ID: Unknown as of writing #) (?(DEFINE) (?<zwnj> ‌(?# You can't see me, but I'm here!)) (?<devanagari_virama> ्) (?<devanagari_consonants> [कखगघङहचछजझञयशटठडढणरषतथदधनलसपफबभमव]) (?<devanagari_sj_consonants> [र]) (?<devanagari_pj_pairs> र(?&devanagari_virama)र) (?<devanagari_vowels> [ऺऻािीुूृॄॅॆेैॉॊोौॎॏॕॖॗॢॣ]) (?<bengali_virama> ্) (?<bengali_consonants> [কখগঘঙচছজঝঞটঠডঢণতথদধনপফবভমযরৰলৱশষসহ]) (?<bengali_sj_consonants> [যর]) (?<bengali_pj_pairs> [রৰ](?&bengali_virama)র) (?<bengali_vowels> [ািীুূৃৄেৈৢৣ]) (?<telugu_virama> ్) (?<telugu_consonants> [కఖగఘఙచఛజఝఞటఠడఢణతథదధనపఫబభమయరలవళశషసహఱ]) (?<telugu_sj_consonants> (?&telugu_consonants)) (?<telugu_vowels> [ాిీుూృౄెేొోౌౢౣ]) ) (?!(?&devanagari_pj_pairs)) (?&devanagari_consonants) (?&devanagari_virama) (?&devanagari_sj_consonants) (?&zwnj) (?&devanagari_vowels) | (?!(?&bengali_pj_pairs)) (?&bengali_consonants) (?&bengali_virama) (?&bengali_sj_consonants) (?&zwnj) (?&bengali_vowels) | (?&telugu_consonants) (?&telugu_virama) (?&telugu_sj_consonants) (?&zwnj) (?&telugu_vowels) (?# # The license for the work on which this regex is based is provided below, with an # additional note regarding adaptation. # # Copyright 2018 hackbunny <hackbunny@gmail.com> # Adapted for PHP by Paul Buonopane # # Permission is hereby granted, free of charge, to any person obtaining a copy of this # software and associated documentation files [the "Software"], to deal in the Software # without restriction, including without limitation the rights to use, copy, modify, # merge, publish, distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to the following # conditions: # # The above copyright notice and this permission notice shall be included in all copies or # substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, # INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR # PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT # OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR # OTHER DEALINGS IN THE SOFTWARE. #)
iOS/macOS Indic character CoreText crash exploit detection 2018-02-12
2018-02-17T02:59:35.000Z
(?:4\s*(?:\d\s*){3}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4})|[25]\s*[1-7]\s*(?:\d\s*){2}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}|6\s*(?:0\s*1\s*1|5\s*[0-9]\s*[0-9])[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}[- ]*(\d\s*){4}|3\s*[47]\s*(?:\d\s*){2}[- ]*(?:\d\s*){6}[- ]*(?:\d\s*){5}|3\s*(?:0\s*[0-5]|[68]\s*[0-9])\s*\d{1}[- ]*(?:\d\s*){6}[- ]*(?:\d\s*){4}|(?:2\s*1\s*3\s*1|1\s*8\s*0\s*0|3\s*5\s*\d{2})[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){3,4}
cc2
2019-03-17T12:14:27.000Z
(?<ValueR>([^\w])([\d])+([,|.])(\d+\s?)([к|М|Г|м])?([к])?(Ом)([\s]))
SMD 0603 q49,91111111 Ом ±1% 0,1 Вт CR0603-FX-49R9ELF SMD 0603 9123d123,0 кОм ± 1% 0,1Вт CR0603-FX-49R9ELF SMD 0603 49,9Ом ±1% 0,1 Вт CR0603-FX-49R9ELF SMD 0603 49,9ккОм ± 1% 0,1Вт CR0603-FX-49R9ELF SMD 0603 9.99Ом ±1% 0,1 Вт CR0603-FX-49R9ELF SMD 0603 9.99кОм ± 1% 0,1Вт CR0603-FX-49R9ELF SMD 0603 49,9 МОм ±1% 0.1 Вт CR0603-FX-49R9ELF SMD 0603 49,9 ГОм ± 1% 0.1Вт CR0603-FX-49R9ELF SMD 0603 49,9МОм ±1% 0.1 Вт CR0603-FX-49R9ELF SMD 0603 49,9ГОм ± 1% 0.1Вт CR0603-FX-49R9ELF SMD 0603 49,9 мОм ±1% 0.11 Вт CR0603-FX-49R9ELF SMD 0603 49,9 мкОм ± 1% 0.11Вт CR0603-FX-49R9ELF SMD 0805 100 нФ ± 10 % 50 В X7R 08055C104KAT2A AVX SMD 0805 100 нФ ±10% 50В X7R 08055C104KAT2A AVX SMD 0805 100 нФ ± 10 % 50.0 В X7R 08055C104KAT2A AVX SMD 0805 100 нФ ±10% 50.0В X7R 08055C104KAT2A AVX ads 50.9Ом erterter 50.99Вт 50.9 В 50.999 Вт а50 мФ 100.00 мкФ 100.00 нФ 100.00 пФ 10 мкФ 0123456789 мФ 0,123456789 мФ 0.123456789 мФ
Поиск Сопротивление
2020-11-26T20:32:21.000Z
^ # Validate the basic structure (?=\d{1,4}\/\d{1,4}\/\d{1,4}$) # The below subexpression matches a leap year # This will be useful later when checking Feb 29th (?<leap>0*$|\d*(?:[13579][26]|(?:\b|[02468])[048])(?:00|(?<!00))$){0} # Match and capture a month, saving a 30-day month or Feb for later reference 0*(?<month>(?<thirty>9|4|6|11)|(?<feb>2)|1[02]|[13578])\/ # If Feb was matched and 29 appears, check for a leap year 0*(?<day>[1-9]|1\d|2[0-8]|(?(feb)29(?=\/(?&leap))|(?:29|(?(thirty)30|3[01]))))\/ # Match and capture a year (?:0\B)*(?<year>\d+) $
1/25/2018 3/11/2119 6/8/224 6/54/1996 2/29/2004 2/29/1900
Match a full date m/d/yyyy
2018-10-25T06:11:23.000Z
Intended as a first pass on already word wrapped text, to remove wrap newlines while preserving likely intentional ones. Not *especially* robust.
(?<![\.\n]) ?\n(?!\n)
Below, we present an introduction to advanced. regular expressions, with eight commonly used concepts and examples. Each example outlines a simple way to match patterns in complex strings. If you do not yet have experience with basic regular expressions, have a look at this article to get started. The syntax used here matches PHP regular expressions.Regular expressions (or regex) are a powerful way to traverse large strings in order to find information. They rely on underlying patterns in a string’s structure to work their magic. Unfortunately, simple regular expressions are unable to cope with complex patterns and symbols. To deal with this dilemma, you can use advanced regular expressions.
Remove single, but not repeating newlines, except immediately after a period. (xiTWA2/1)
2021-09-12T14:16:04.000Z
commitlint to cz-emoji-conventional
^(?::\w*:|(?:(\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])))\s(?<type>\w*)(?:\((?<scope>.*)\))?!?:\s(?<subject>(?:(?!#).)*(?:(?!\s).))(?:\s\(?(?<ticket>#\d*)\)?)?$
✨ feat: add signup pages from (#11) 🧹 feat: add signup pages from (#11) 🐛 feat: add signup pages from (#11) 📝 feat: add signup pages from (#11) 💎 feat: add signup pages from (#11) 📈 feat: add signup pages from (#11) 🧪 feat: add signup pages from (#11) 📦 feat: add signup pages from (#11) ⏪️ feat: add signup pages from (#11) ♻️ feat: add signup pages from (#11) 🏗️ feat: add signup pages from (#11)
commitlint gitmoji
2023-02-26T00:05:00.000Z
One liner
(?:src|href)=[\'"](?!http|https|//)\K/?([^\'"]*)
<img src="/"> <a href="/contact-us">Contact Us</a> <a href="contact-us">Contact Us</a> <img src="/datas/users/32-img.jpg" /> <img src="datas/users/32-img.jpg" /> <a href="Https://abs/url/doc.xml" />RSS</a> <a href='http://relative/url/'>Note the Single Quote</a> <img src="//site.com/protocol-relative-img.jpg" /> <img https="https://airlinercafe.com/protocol-relative-img.jpg" />
Change all URLs to absolute
2020-08-09T10:19:07.000Z
(<!\[CDATA\[)|(\]\]>)
Remove beginning and end of CDATA tags
2019-07-09T16:05:57.000Z
search text matching any word
\W(banana|lemon|mango|pinea|200|assigned|1)
asdasd a PINEAPPLE 200 20 great oaks great oaks blvd 22 11 1 2 apineapple varun nikhin
search text matching any word
2015-07-10T01:34:56.000Z
For use in testing SpellChecker(MHApps)
(text|simple)(?![^<]*>|[^<>]*<\/)
This is simple html text <span class='simple'>simple simple text text</span> text
Spell Checker Test
2015-09-09T16:27:35.000Z
Matches German nouns with "artikels"
(der|die|das) [A-Z][a-z]+
German nouns
2016-04-09T13:41:48.000Z
username
^[a-z0-9][a-z0-9-]+$
Code Review
2015-01-13T20:23:17.000Z
Atomic Groups are non-capturing and once a match is made will exit the atomic group and throw away all backtracks. Use Atomic Groups for optimising performance. A non-atomic expression \b(foobar|foot|foo)\b and a test string of foots will: match foo of foobar => fail and backtrack to the 2nd alternative match foot of foot => fail as \b is exprected and backtrack to the 3rd alternative match foo of foo => and fail to match. An atomic group expression \b(?>foobar|foot|foo)\b and a test string of foots will: match foot of foot => fail as expects /b but has s and exits group and releases all backtracking alternatives Note: An atomic group \b(?>foobar|foot|foo|foots)\b will not match a test string of foots as it will test using the 2nd alternative and fail, releasing backtrackings. A non-atomic group \b(foobar|foot|foo)\b will match a test string of foots as it tests each alternative.
\b(?>foobar|foot|foo)\b
foots
Atomic group
2016-03-06T15:59:34.000Z
Color RGBA in shape : 255, 255, 255, 255 ',' or ';' are accepted
((?<!\d|\.)([0-9]?[0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?!\d|\.) *[,;] *){3}(?<!\d|\.)([0-9]?[0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?!\d|\.)
RGBA: (0-255) 204, 128, 128, 255 RGBA: (0-255) 4, 128, 128, 255 RGBA: (0-255) 204, 18, 928, 255 RGBA: (0-255) 304, 1, 18, 255 RGBA: (0-255) 204, 28, 128, 25, 25, 255, 152, 12 RGBA: (0-255) 204, 128, 8, 5 RGBA: (0-255) 204, 128, 128, 355 RGBA: (0-255) 204, 128, 128, 265 RGBA: (0-255) 204, 128, 128, 256 bonjour, 18, 928, 255 RGBA: (0-1) 0.8, 0.502, 0.502, 1 RGB: #cc8080 RGBA: #cc8080ff ARGB: #ffcc8080 CMYK: 0, 37, 37, 19 HSLA: 360, 43, 65, 1
RGBA [0;255]
2015-11-16T21:20:53.000Z
Get path (windows style) from any type of text (error message, e-mail corps ...), quoted or not. ___THIS IS THE SINGLE LINE VERSION !___ If you want understand how it work or edit it, go https://regex101.com/r/7o2fyy - Relative path are not supported - The goal is to catch what "Look like" a path. See the limitations - UNC path and prefix path like [//./], [//?/] or [//./UNC/] are allowed - some url path like [file:///C:/] or [file://] are allowed - Catch path quoted with ["] and [']. But these quotes are include with the catch - Quoted path is not concerned by limitations ## Limitations : (only unquoted path) - [dot] and [space] is allowed, but not in a row [dot+space] or [space+dot] - [dot] at end of file name isn't catched - **INSIDE A NAME FILE (or last directory if it is a path to a directory) :** - **[comma] is not supported (it stop the catch)** - **after a first [dot], any [space] stop the catch** - **after a [space], catch is stoped if next character is not a [letter], [digit] or [-]** - **so, double [space] stop the catch** ## Compatibility - compatible PCRE, PCRE2 - AutoHotkey : don't forget to escape "%" in "`%" - ***/!\ Powershell and .Net /!\\*** : this regex need some modification to be interpreted by powershell. You have to replace each (?&CapturGroupName) by \k<CapturGroupName>. *Use this powershell code to do this replacement :* ` $powershellRegex = @' [Put here the regex to replace (?&CapturGroupName) with \k<CapturGroupName>] '@ -replace '\(\?&(\w+)\)', '\k<$1>' ` *This example code must return :* `[Put here the regex to replace \k<CapturGroupName> with \k<CapturGroupName>]`
(?<opening>\b(?<montage>[a-zA-Z]:[\/\\])|[\/\\][\/\\](?<!http:\/\/)(?<!https:\/\/)(?>[?.][\/\\](?:[^\/\\<>:"|?\n\r ]+[\/\\])?(?&montage)?|(?!(?&montage)))|%\w+%[\/\\]?)(?:[^\/\\<>:"|?\n\r ,'][^\/\\<>:"|?\n\r]*(?<![ ,'])[\/\\])*(?:(?=[^\/\\<>:"'|?\n\r;, ])(?:(?:[^\/\\<>:"|?\n\r;, .](?: (?=[\w\-]))?(?:\*(?!= ))?(?!(?&montage)))+)?(?:\.\w+)*)|(?:'(?&opening)(?=.*'\W|.*'$)(?:[^\/\\<>:'"|?\n\r]+(?:'(?=\w))?[\/\\]?)*')|"(?&opening)(?=.*")(?:[^\/\\<>:"|?\n\r]+[\/\\]?)*"
THIS IS SINGLE LINE VERSION to understand and edit it, go https://regex101.com/r/7o2fyy C:/testOk\dot.Dirname/.nameFileBeginByDot first space after a dot in file name stop the match C:/testOk\_.._AsDirName/../file name.ext1.ext2 first space after a dot stop the match start text don't match C:/testOk\lastDir Or FileName WithDouble..dot stop the match C:/testOk\lastDir Or FileName dot ended. stop the match like an end sentence. So, a last name with a space after a dot is not catch C:/testOk\LastNameIs/DirName C:/testOk\2Paths_ _separated/f.ext space after extention stop match C:/testOK\Last_/_isNotmatched/fgfj.gjjb/uhloext/ and [ ,'] after '\' stop match \\127.0.0.1/this', 'isOkInMidDirName\butSimple',' stop match in last DirName or FileName \\.\c:/this exotic path begining work\and\ space after '\' stop the match \\?\c:/this exotic path begining work too\and \space before '\' stop the match too \\testOk/this' - 'is ok in dirName/and - in lastName.ext i:/dir/fileName with a .space before dot stop the match \\?\server1\e:\utilities\\filecomparer\ this double \\ is interpretated as new path @"c:\testOk\double quote character is more permissive/ '' , ; .txt, .ext2", @"\\127.0.0.1\c$\temp\t'est-file.txt, if end double quote is missing, we use unquote match @"\c:\LOCALHOST\c$\ thisIsNotMatched" "temp\test-file.txt", quoted path must have a right opening to be matched @'\\.\c:\temp\te'st-file.txt' simple quoted is ok 'c:\simpleQuoteInsideStill'Match\but' stopMatch if next is space character, 'c:\simpleQuoteInsideStill'Match\but\'stopMatch if is fisrt character after \ 'c:\simpleQuoteInsideStill'Match\but''stopMatch if he is double @"\\?\c:\te ' mp\est-file.txt", @"\\.\UNC\LOCALHOST\c$\temp\test-file.txt", @"\\127.0.0.1\c$\temp\test-file.txt" /\serverName\mix/and\still match" double quote character stop match \\\IfMoreThan2_\_we take only the 2 lasts.ext first space after ext stop the match /testNotMatch/html /testNotMatch.html testNotMatch.html // -> this simple // or \\ is not matched, but this //isMatched ! / -> this simple / is not matched, and this /notMatchedToo b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Custom Data" "b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Custom Data" "\\b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Custom Data" error Message test: --------------------------- Tentative d'accès à C:\Users\tpgz4017\App - Data\Local\Temp\tempShapeFile_CrossWave Calibration Zones - Atoll CrossWave Model.shx après sa fin. --------------------------- local url path : file://C:/Users/Downloads/20220516_32289275_1049383.pdf urlPath : file://p-eco2.rd.fr/vol_H0037_01$/599/livraison/20220516_32289275_1049383.pdf c:\temp\test-file.txt", \\127.0.0.1\c$\temp\test-file.txt", \\LOCALHOST\c$\ temp\test-file.txt", \\LOCALHOST\c$ \temp\test-file.txt", \\.\c:\temp\t\est-file.txt", \\?\c:\temp\test-file.txt", \\.\UNC\LOCALHOST\c$\temp\test-file.txt", \\?\UNC\ServerName\ temp\test-file.txt", \\127.0.0.1\c$\temp\test -file.txt" error Message test: Site0 / 3: - Warning . See log file 'C:\ProgramData\InfoVista\Planet 7.4\7.4\RPE\Log\Plugins\Universal_Model_masked\log_Universal_Model.txt' for details C:/test\gvk.hv/fgfj.gjjb/uhloext : some random text \\b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Polygon\Haguenau\Building\Haguenau hgtfhyt "C:/te-st.html" "C:/te-st.html" gd"dhbcsk "C:/te/dsst.ikpo fdsf "C:\test" "C:// test.html" gd "//te s t/e, llo.html C:/test\f/uhlo/. C://te?st.html b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Custom Data" ; dfsdf "\\b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Custom Data" ; dfsdf "\\ "\\b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Custom Data"Haguenau_Building.tab : Data format of \\b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Polygon\Haguenau\Building\Haguenau Building.* C: is invalid Haguenau_Building.tab : Data format of \\b-renice\sauvegardes\B-HIER\GEO\Geo NetAct Atoll_Planet\UR_Est\Polygon\Haguenau\Building\Haguenau Building.TAB, is invalid Haguenau_Building.tab : Data format of \\b-renice\sauvegardes\B-HIER\GEO\Geo_NetAct_Atoll_Planet\UR_Est\Polygon\Haguenau\Building\Haguenau Buildi*.*ng.*, is invalid C:/test/../hjgbkl C:/test/../hjgbkl.gfgdfgrdgfdgr C:/test/../hjgbkl C:/test.html C://test/ .h/hel,lo.html//test/./hello.html C:/test//hello.html //test //hello.html /test "%tmp%/fsdfs" %tmp%/fsdfs ERROR 8/31/2021 - 6:45:39 PM HighResClutter .RasterFile : \\b-ren ice\sauv egardes\B-HIER\GEO%dsq%\NewJersey_NewYork\DTM\DTM\CENTRAL_JERSE..Y_New_York_2 m_Z18N_0_DTM_02_06.bil : Le fichier spécifié est introuvable. \\b-ren ice\sauv egardes\..\B-HIER\GEO\NewJersey_NewYork\DTM\DTM\CENTRAL_JERSE..Y_New_York_2 m_Z18N_0_DTM_02_06.bil C:\b-ren ice\sauv egardes\B-HIER\GEO\NewJersey_NewYork\DTM\DTM\CENTRAL_JERSE..Y_New_York_2 m_Z18N_0_DTM_02_06.bil \\b-ren ice\sauv egardes\B-HIER\GEO\NewJersey_NewYork\DTM\DTM\CENTRAL_JER SE.Y_New_York_2 m_Z18N_0_DTM_02_06.bil. //test.html \\10.1.1.107 //10.1.1.107/test.html //10.1.1.107/te st/hello.html //10.1.1.107/test/hello //test/hello.txt //test/hello.txt. \\.\UNC\Server\Share\Test\Foo.txt \\?\UNC\Server\Share\Test\Foo.txt Pour les chemins UNC de périphérique, la partie serveur/partage forme le volume. Par exemple, dans \\?\server1\e:\utilities\filecomparer\ , la partie serveur/partage est server1\utilities . Ceci est important quand '\\127.0.0.1\c$\temp\test-fi'le.txt'
Get path from any text
2023-01-31T14:38:55.000Z
[0-9]+([\.,]?[0-9]{1,2})?+[$€]
Un forfait de 2.99€ HT/an
Extracting a price from a string
2018-05-16T10:45:53.000Z
https://stackoverflow.com/questions/7967075/regex-for-not-empty-and-not-whitespace
(?!^$)([^\s])
Feature/ds
NotEmpty
2023-05-10T16:06:32.000Z
Find zoom links in text
https:\/\/[\w-]*\.?zoom.us\/(j|my)\/[\d\w?=-]+
https://yandex.zoom.us/my/somename https://uni-hamburg.zoom.us/j/71047121108 https://zoom.us/j/9691388953?pwd=U2VnRTg5VDdzRW0xSHNlZXM4UFlKQT09 https://mvideoeldorado-ru.zoom.us/j/12317847439?pwd=UHM1bHdPZ2hPdmVrZlNtV2RMdXc5UT09 https://yandex.zoom.us/j/12303260396 https://us06web.zoom.us/j/12365249269?pwd=SFF3aTNyZ1dPSVRkcVN0aTV0SmxuQT09
Detect zoom meeting links
2022-06-10T07:18:09.000Z
I'm logged in as (?:a\s|an\s)(?:"([^"]*)"\s)?(?:user|customer)\s(?:(?:for[\sa\s|\san\s]?)(?:"([^"]*)"\s))?
Given I'm logged in as a user for a "password change" to eCommerce Given I'm logged in as an "inactive" user for a "password change" to eCommerce Given I'm logged in as an "inactive" user to eCommerce Given I'm logged in as a "simple" user to eCommerce Given I'm logged in as a user in a "shared" account to eCommerce Given I'm logged in as a user in a "bucket" account to eCommerce Given I'm logged in as a user for "email notification tests" to eCommerce Given I'm logged in as a user with "cs admin and sales admin" roles to eCommerce Given I'm logged in as a user with "cs & bb" roles for a "passwd change" to eCommerce Given I'm logged in as an "inactive" user with "cs admin" roles to eCommerce Given I'm logged in as "ducking" user with "ducking" roles to eCommerce
Twist Login
2019-06-13T13:41:55.000Z
.*(https:\/\/cloud\.saikoanimes\.net\/.*)" c.*
<a href="https://cloud.saikoanimes.net/11Yu" class="btn-sa" target="blank">01</a> <a href="https://cloud.saikoanimes.net/BXz" class="btn-sa" target="blank">02</a> <a href="https://cloud.saikoanimes.net/BXv" class="btn-sa" target="blank">03</a> <a href="https://cloud.saikoanimes.net/11Yx" class="btn-sa" target="blank">04</a> <a href="https://cloud.saikoanimes.net/BXt" class="btn-sa" target="blank">05</a> <a href="https://cloud.saikoanimes.net/BXw" class="btn-sa" target="blank">06</a> <a href="https://cloud.saikoanimes.net/11Yv" class="btn-sa" target="blank">07</a> <a href="https://cloud.saikoanimes.net/BXx" class="btn-sa" target="blank">08</a> <a href="https://cloud.saikoanimes.net/BXy" class="btn-sa" target="blank">09</a> <a href="https://cloud.saikoanimes.net/11Yo" class="btn-sa" target="blank">10</a> <a href="https://cloud.saikoanimes.net/11Ym" class="btn-sa" target="blank">11</a> <a href="https://cloud.saikoanimes.net/11Yw" class="btn-sa final" target="blank">12</a>
Saiko
2020-10-10T01:07:50.000Z
<tr>\n\s*<td width="70"><strong>Released:<\/strong><\/td>\n\s*<td>(.*)<\/td>\n\s*<\/tr>\n\s*<tr>\n\s*<td width="70"><strong>Runtime:<\/strong><\/td>\n\s*<td>(.*)<\/td>\n\s*<\/tr>\n\s*<tr>\n\s*<td width="70"><strong>Genres:<\/strong><\/td>\n\s*<td><span class="movie_info_genres"><a\s[^<>]*>([^<>]*)<\/a>
<tr> <td width="70"><strong>Released:</strong></td> <td>July 25, 2014</td> </tr> <tr> <td width="70"><strong>Runtime:</strong></td> <td>90 mins </td> </tr> <tr> <td width="70"><strong>Genres:</strong></td> <td><span class="movie_info_genres"><a href="/?genre=Action">Action</a> <a href="/?genre=Sci-Fi">Sci-Fi</a> </span></td> </tr> <tr> <td width="70"><strong>Actors:</strong></td> <td><span class="movie_info_actors"> <a href="/?actor_name= Analeigh Tipton "> Analeigh Tipton </a> <a href="/?actor_name= Morgan Freeman "> Morgan Freeman </a> <a href="/?actor_name= Scarlett Johansson "> Scarlett Johansson </a> <a href="/?actor_name=Min-sik Choi">Min-sik Choi</a> </span></td> </tr>
Reg124
2014-10-21T07:45:54.000Z
tester\|\|\|\|(.*?)~
tester||||123123+++123+++123123~~~~
stl
2016-02-16T16:55:11.000Z
Grabs all HTML <img> tags
<img[^>]*?src\s*=\s*[""']?([^'"" >]+?)[ '""][^>]*?>
Hello World.. <img src="a1.png" width="100" height="50" /> <img src="a1.png" width="100" height="50"> <img style="width:100px;height:50px" src="a1.png" />
HTML img
2015-10-17T05:48:00.000Z
extract node values from xml string
<suburb>(.+?)<\/suburb>
<primaryAddress> <addressLine>280 Flinders Mall</addressLine> <geoCodeGranularity>PROPERTY</geoCodeGranularity> <latitude>-19.261365</latitude> <longitude>146.815585</longitude> <postcode>4810</postcode> <state>QLD</state> <suburb>Townsville</suburb> <type>PHYSICAL</type> </primaryAddress>
extract node values from xml string
2016-03-17T07:13:26.000Z
PTN (Portable Tak Notation) is a format to transport the history of a played game of Tak. The body of PTN files consists of ordered lines of moves, each consisting of one or two plies. This pattern parses PTN move lines and groups interesting information in useful groups.
(?<=^|\n)(?P<spacer>[[:blank:]]*(?:\{[^{]*(?&spacer)[^}]*\}[[:blank:]]*)[[:blank:]]*|[[:blank:]]+)(\d+)\.(?&spacer)(?:([1-8])?([a-h])([1-8])([+-<>])([1-8]*)|([FSC])?([a-h])([1-8]))(?:(?&spacer)(?:([1-8])?([a-h])([1-8])([+-<>])([1-8]*)|([FSC])?([a-h])([1-8])))?(?&spacer)?(?=$|\n)
1. a1 e1 2. a2 e2 3. a3 b4 4. a4 a5 5. Cb5 b4< {~6. b4 Cb3~} 6. b4 Se3
PTN Ply Matching
2016-09-22T14:36:07.000Z
([^,]*,){6}([^,]*)
547-18-5874,519480195,AE09430101,160, ,fre fdds,0065.00
count occurence of comma
2015-08-31T21:52:20.000Z
This pcre style regex tests for valid URLs capturing the whole address. It will capture http and https only. Compatible with multiple sub-domains and raw IPV4 addresses, as well as paths, queries, and parameters. See below for examples: Will match these valid URLS: https://www.example.com/foo/?bar=baz&inga=42&quux http://foo.com/blah_(wikipedia)#cite-1 http://foo.com/blah_(wikipedia)_blah#cite-1 http://foo.com/unicode_(✪)_in_parens http://foo.com/(something)?after=parens http://code.google.com/events/#&product=browser http://142.42.1.1/ http://142.42.1.1:8080/ Will NOT match though valid URLS http://✪df.ws/123 http://userid:password@example.com:8080 http://userid:password@example.com:8080/ http://userid@example.com http://userid@example.com/ http://userid@example.com:8080 http://userid@example.com:8080/ http://userid:password@example.com http://userid:password@example.com/ Does NOT and should not match these bad URLS: http:// http://. http://.. http://../ http://? http://?? http://??/ http://# http://## http://##/ http://foo.bar?q=Spaces should be encoded // //a ///a /// http:///a foo.com rdar://1234 h://test http:// shouldfail.com :// should fail http://foo.bar/foo(bar)baz quux ftps://foo.bar/ http://-error-.invalid/ http://a.b--c.de/ http://-a.b.co http://a.b-.co http://3628126748 http://.www.foo.bar/ http://www.foo.bar./ http://.www.foo.bar./ Its not perfect, it will match http://999.999.999.999 and similar invalid IPV4 addresses and is not optimized but met my needs.
(https?\:\/\/(?:[[:alnum:]]+\.)?[[:alnum:]]+\.(?:com|net|org)\/\S*)|(https?\:\/\/(?:\d{1,3}\.){3}\d{1,3}\/?(?:\:\d{0,6})?\/?)
Screen 0: minimum 320 x 200, current 3520 x 1080, maximum 8192 x 8192 VGA-0 connected 1600x900+1920+180 (normal left inverted right x axis y axis) 443mm x 249mm 1600x900 60.00*+ 75.00 1280x1024 75.02 70.00 60.02 1440x900 59.89 1280x800 59.81 1152x864 75.00 1280x720 59.97 1024x768 75.08 70.07 60.00 832x624 74.55 800x600 72.19 75.00 60.32 56.25 640x480 75.00 72.81 60.00 720x400 70.08 LVDS connected (normal left inverted right x axis y axis) 1366x768 59.97 + 1280x720 59.86 1152x768 59.78 1024x768 59.92 800x600 59.86 848x480 59.66 720x480 59.71 640x480 59.38 HDMI-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 1150mm x 650mm 1360x768 60.02 + 1920x1080 60.00* 59.94 30.00 24.00 29.97 23.98 1920x1080i 60.00 59.94 1280x1024 60.02 1280x720 60.00 59.94 1024x768 60.00 800x600 60.32 720x480 60.00 59.94 640x480 60.00 59.94 59.94 720x400 70.08 /en/blog/title https://www.example.com/foo/?bar=baz&inga=42&quux http://✪df.ws/123 http://userid:password@example.com:8080 http://userid:password@example.com:8080/ http://userid@example.com http://userid@example.com/ http://userid@example.com:8080 http://userid@example.com:8080/ http://userid:password@example.com http://userid:password@example.com/ http://142.42.1.1/ http://142.42.1.1:8080/ http://➡.ws/䨹 http://⌘.ws http://⌘.ws/ http://foo.com/blah_(wikipedia)#cite-1 http://foo.com/blah_(wikipedia)_blah#cite-1 http://foo.com/unicode_(✪)_in_parens http://foo.com/(something)?after=parens http://☺.damowmow.com/ http://code.google.com/events/#&product=browser http://j.mp ftp://foo.com/baz http://foo.bar/?q=Test%20URL-encoded%20stuff http://مثال.إختبار http://例子.测试 http://उदाहरण.परीक्षा http://-.~_!$&'()*+,;=:%40:80%2f::::::@example.com http://1337.net http://a.b-c.de http://223.255.255.254 SHOULD NOT MATCH: http:// http://. http://.. http://../ http://? http://?? http://??/ http://# http://## http://##/ http://foo.bar?q=Spaces should be encoded // //a ///a /// http:///a foo.com rdar://1234 h://test http:// shouldfail.com :// should fail http://foo.bar/foo(bar)baz quux ftps://foo.bar/ http://-error-.invalid/ http://a.b--c.de/ http://-a.b.co http://a.b-.co http://0.0.0.0 http://10.1.1.0 http://10.1.1.255 http://224.1.1.1 http://1.1.1.1.1 http://123.123.123 http://3628126748 http://.www.foo.bar/ http://www.foo.bar./ http://.www.foo.bar./ http://10.1.1.1
Capturing URL tester
2018-10-26T07:02:01.000Z
A collection of dates used for the Data Science with Python course
([a-zA-Z]+)[\s\-\.]+(\d{1,2})[\s\-\,]+(\d{4})
04/20/2009; 04/20/09; 4/3/09 7/8/71 Mar-20-2009; Mar 20, 2009; March 20, 2009; Mar. 20, 2009; Mar 20 2009 20 Mar 2009; 20 March 2009; 20 Mar. 2009; 20 March, 2009 Mar 20th, 2009; Mar 21st, 2009; Mar 22nd, 2009 Feb 2009; Sep 2009; Oct 2010 6/2008; 12/2009 6/1998 Primary Care Doctor: 2009; 2010 (4/10/71)Score-1Audit C Score Current: 9/27/75. 1; 10/13/1976 Audit C Score, 4-13-82 Other Child Mental occasion 5/21/77. 1; 10/13/1976 Audit C (1988-now) B12 969 2007 Lab: B12 969 2007 Ely 708-810-7787 February, 2010 URUGUAY September 1984. 7HH, April 1985 Hx of Outpatient Venlafaxine 37.5mg daily: May, 2011: self-discontinued ) Paxil (Jan 1978) : sedation LFTs WNL (October 1996)Problems Opioid dependence "I wasn't getting anywhere" (April 1988)Prior Prozac 20 mg daily: February, 1995: self-discontinued sLexapro (1988-now): Good response (anxiety) pOct 2015 - Admitted to Gray lNovember 1990 - NPCCHx of Outpatient Treatment: Yes
Date tests
2018-04-18T00:27:49.000Z
find dart relative import path
import\s+['\"](?!package:)(?<importPath>.*?)['\"]
import "package:test/model/test/test.dart" import "model/test/test.dart" import "../test/test.dart"
Dart relative import
2023-07-11T13:37:11.000Z
\* \[(.+)\|(.+)\]
Screwturn update links
2019-05-24T08:43:39.000Z
This will pluck out any do_action or apply_filters name in your code. Useful if you want to see what actions or filters have been added or deprecated between codebases, etc.
((?<!gf_)apply_filters|do_action).*?\( ?('|")(.*?)('|").*
apply_filters( 'gform_export_separator', ',', $form_id ); do_action( 'gform_export_separator', ',', $form_id );
do_action and apply_filters name getter for Wordpress
2022-08-23T21:13:43.000Z
(?<protocol>s?ftp):\/\/(?<user>[^@\s]+)@(?<host>[^\?\s:]+)(?::(?<port>[0-9]+))?(?:\?(?<password>.+))?
sftp://username@upload.google.com:22?c0n|\|3ctEc1
SFTP with username and optional port & password
2014-04-16T20:03:00.000Z
relative to absolute
^(.*)((<img|<script|<link)(.*) (src|href))\=(\"|')(?!cdn|https|https|\/\/)(\/)?(<\/script>|\>)?(.*)$
relative to absolute
2015-01-20T01:16:55.000Z
<Compile Include=".*Document\\.*\r*\n*.*<Link>.*\r*\n*.*<\/Compile>(?!<Compile Include)
<Compile Include="..\..\Document\Source\CommonAssemblyInfo.cs"> <Link>CommonAssemblyInfo.cs</Link> </Compile> <Compile Include="..\..\Reports\ReportsCore\Rendering\Components\InteractiveEventIDs.cs"> <Link>Rendering\InteractiveEventIDs.cs</Link> </Compile> <Compile Include="..\..\SL\CommonFiles\SafeGraphics.cs"> <Link>SafeGraphics.cs</Link> </Compile> <Compile Include="..\..\VersionInfo.cs"> <Link>VersionInfo.cs</Link> </Compile>
Find linked files
2018-02-14T07:42:34.000Z
^U(?:AA|AB|BA|BB|CC|CD|EA|FA|GA|HA|IA|JA|AE|CE|GE|FB|JB|GB|HL|IL|JL)[E|U|W]E(?:DN|AZ)\d{2,2}\d\d{8,8}$
UCCUEDN15000003676
ADCE - Validación
2016-06-24T13:26:42.000Z
Validates list of email addresses separated by , or ; and possibly spaces. Capture groups will return only the first and last email captured.
^[,;\s]*(?:([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)(?:\s*[,;]+\s*([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)*)*)+[,;\s]*$
;, ;, ;, ;, ;,,,,, ;;; a@a.a , ;;,;b@b.b;;;;; , c@c.c , d@d.d ; e@e.e;;;
Check delimited email list validity
2016-01-28T21:24:03.000Z
Regex for matching https://mega.nz file and folder URLs. https://github.com/tonikelope/megabasterd/issues/215
https://mega\.nz/((folder|file)/([^#]+)#(.+)|#(F?)!([^!]+)!(.+))
https://mega.nz/folder/xxxxxxx#zzzzzzzzzzzzzzzzzzzzzz https://mega.nz/#F!xxxxxxx!zzzzzzzzzzzzzzzzzzzzzz https://mega.nz/file/yyyyyyy#bbbbbbbbbbbbbbbbbbb https://mega.nz/#!yyyyyyy!bbbbbbbbbbbbbbbbbbb
mega.nz files and folders
2021-07-06T17:55:07.000Z
Date (MM DD YYYY)
'/^((0?[1-9]|1[012])[- /.](0?[1-9]|[12][0-9]|3[01])[- /.](19|20)?[0-9]{2})*$/'
MM/DD/YYYY
2016-08-23T17:51:33.000Z
(?<=\[)(?!:scroll:)(?!\d+)(?P<title>[A-Z][\w\s\,\-\?\:\']+)(?=\])
# Functional Programming * [:scroll:](organizing-programs-without-classes.pdf) [Organizing Programs Without Classes](http://cs.au.dk/~hosc/local/LaSC-4-3-pp223-242.pdf) * [:scroll:](functional-programming-with-bananas-lenses-envelops-and-barbed-wire.pdf) [Functional Programming with Bananas, Lenses, Envelopes and Barbed Wire](http://eprints.eemcs.utwente.nl/7281/01/db-utwente-40501F46.pdf) From Patrick Thomson's [An introduction to Recursion Schemes](http://patrickthomson.ghost.io/an-introduction-to-recursion-schemes/): > In 1991, Erik Meijer, Maarten Fokkinga, and Ross Paterson published their now-classic paper Functional Programming with Bananas, Lenses, Envelopes and Barbed Wire. Though this paper isn’t widely known outside of the functional programming community, its contributions are astonishing: the authors use category theory to express a set of simple, composable combinators, called recursion schemes, that automate the process of traversing and recursing through nested data structures. Though recursion schemes predate Meijer et. al’s work, this paper brings the enormous abstractive power of category theory to bear on the subject of traversing data structures—it’s a magnificent example of how category-theoretical concepts can bring both rigor and simplicity to day-to-day programming tasks. * :scroll: [Equal Rights for Functional Objects or, The More Things Change, The More They Are the Same](equal-rights-for-functional-objects.pdf) * :scroll: [Optimal Purely Functional Priority Queues](optimal-purely-functional-priority-queues.pdf) * :scroll: [Why Functional Programming Matters](why-functional-programming-matters.pdf) ## Applicative Programming * [Backtracking Iterators](https://www.lri.fr/~filliatr/publis/enum2.pdf) * [Breadth-First Numbering: Lessons from a Small Exercise in Algorithm Design](http://www.cs.tufts.edu/~nr/cs257/archive/chris-okasaki/breadth-first.pdf) ## Concatenative Programming * :scroll: [Concatenative Programming: An Overlooked Paradigm in Functional Programming](concatenative-programming-an-overlooked-paradigm.pdf) ## Imperative Programming - Functional Programming * [Crossing the Gap from Imperative to Functional Programming through Refactoring](http://dig.cs.illinois.edu/papers/lambdaRefactoring.pdf)
pwl repo titles
2016-09-12T00:02:12.000Z
\"(\\([[:alpha:]]|[^[:alpha:]])|[^\n\"])*[^\\]\"
"test\b\"" "test\"\b " "test\ newl" "123" " " "quote''''" "test\"\b\000" "" "test \" "test wrong" "test \ "
LUA double-quoted string
2016-02-28T14:48:32.000Z
test
^.*(?=.{8})(?=.*\d)(?=.*[A-Z]).*$
Geron122
test
2016-07-05T15:54:20.000Z
^[a-zA-Z0-9]+[a-zA-Z0-9\._]+@[a-z]+\.[a-z\.]{2,5}$
Mail
2016-08-22T13:41:36.000Z
Finds a page where a bracket is the first char on a line not preceeded by a newline
^(?<!\n)(\[)
[some link](somepage.md) (?<!a)b
Find link-first pages
2016-08-19T17:18:31.000Z
This regex separates numbers with commas taking 0 into account.
(\d{1}\.\d{5,8}|0)\s
0.1766155 0.1658146 0.3464225 0.258326 1.040629 0.3123467 0.7877846 0.1264636 0.1854926 2.235324 0 0.3128409 0.5384811 0.2159374 0.1659985 0.2901815 0.08226276 0.1323811 0.1374549 0.04583898 0.1653796 0.02095086 0.1465107
Add commas between numbers
2022-07-17T20:21:16.000Z
#tagging original form regex
#\[\[(?<name>.+?)\]\]
my first tag is #[[1:hashTag:Rameez]] and second tag is #[[2:hashTag:Rameez2]]. Did I forget to mention that last tag is #[[3:hashTag:Rameez2]]?
#tagging original form regex
2015-10-09T09:29:00.000Z
((房间|卫生)*(收拾|清洁|打扫|清理|整理|换床单|收|卫生)(下|一下)?(房间|卫生|一下)*(垃圾)*)|(换(下|一下)?床单)
打扫房间? 打扫卫生。 帮我打扫下房间。 嗯,打扫房间。 帮我打扫一下房间。 打扫? 清理房间? 嗯,帮我打扫下房间。 嗯,打扫卫生。 帮我打扫房间。 打扫下房间? 房间打扫? 房间打扫一下。 打扫一下房间。 请打扫房间? 我打扫房间? 我要打扫房间? 房间需要打扫。 打扫房间卫生? 打扫服务。 请帮我打扫下房间。 请打扫一下房间。 五零二打扫房间? 呃,打扫房间。 哎,你好,那个我的房间没有打扫。 嗯,帮我打扫房间。 嗯,我要打扫房间。 嗯,房间打扫。 嗯,打扫下房间。 嗯,打扫下,卫生。 您好,打扫卫生。 我打扫下,卫生。 我要打扫房间。 房间打扫卫生。 打扫下卫生。 清洁打扫房间? 现在打扫卫生。 请帮我打扫一下房间。 一会帮我打扫一下房间。 一会给我打扫房间。 一点钟到打扫卫打扫卫生。 七七零打扫下房间。 七七零打扫房间? 七十机器人来给我打扫下房间。 七幺六打扫房间。 三十分钟以后帮我打扫下房间。 下午帮我打扫下房间就九五二。 下午打扫房间? 下午给九零幺房间打扫一下。 不一样,我要打扫一下房间洗衣服。 不告诉我吗?不好的是话我就八零七七八包也没有打扫也不会搞笑了。 不是打扫是垃圾桶,我就垃圾桶专门好帮我清理可以来好吧。 不是打扫是那个我们定的机器人送拖鞋,还没有来。 不是要打扫需要凉拖鞋。 不能打扫吗? 不需要你吗上来打扫吧。 不需要打扫。 个房间有话筒吧,用那个三点钟在打扫吧。 为什么今天没有打扫卫生啊。 为什么工作,明天可以去哪里玩啊?我想要的怎么样了房怎么这么脏了不同温度太高了,明天能不能给我打扫下房间啊。 为什么没有人打扫卫生。 九一五打扫? 九二零打扫一下房间。 九五二打扫房间? 九六八打扫房间。 九零三卫生来打扫一下。 了,没有了,现在不用明天打扫就行了。 五分钟后帮我打扫下,卫生。 什么是问一下,就是打扫房间的怎么还没过来。 今天不用打扫房间了。 今天不用打扫房间了,不用。 今天他们那个没有送是昨天今天没有打扫房间。 今天是没有打扫房间吗? 今天没有放水啊,今天没打扫卫生。 他们打扫房间? 但是我打扫房间调承担。 你不一样,打扫房间? 你好来打扫一下房间。 你好,上午没有打扫房间,然后水什么都没换叫服务员,拿两瓶水过来吧。 你好,你好,我们这个那个那个那个店那个房间还没打扫啊。 你好,帮我打扫房间。 你好,帮我把帮我打扫下房间没什么那里电视。 你好,幺五幺幺幺五幺幺打扫卫生。 你好,我想通知一下打扫房间的阿姨,我是八二六房间,我不需要打扫卫生,需要换毛巾就可以了。 你好,我的房间紧急打扫。 你好,我这里是五一二房间那个早上还没有打扫麻烦您叫人过来帮我们打扫一下,谢谢。 你好,打扫卫生。 你好,给我打扫下房间。 你好,能帮我先过来打扫一下房间吗? 你好,请安排打扫下,卫生。 你好,请帮我房间打扫下。 你好,请帮我找人打扫房间? 你好,请麻烦你叫服务员来给清理下房间,好吧。 你好,那个先可以打扫滴幺八幺二吗,让我住下。 你好,那个帮我打扫房间的看问一下有没有看到一个iPad的。 你好,那个幺幺幺八房间需要打扫。 你好,麻烦叫个服务员过来打扫一下,为什么? 你帮我这房间打扫一下。 你这个服务员过来打扫卫生。 你这打扫房间? 你这服务员帮我房间打扫下。 你送,送两三个过来吧,又没用,他们都没没放浴帽,打扫卫生都不放。 八七要打扫房间洗衣服。 六六六房间需要清理房间。 六零八房间打扫完了吗? 准备帮我打扫房间呢? 刚才说的打扫房间,请问大概几分钟到吗? 十一点半帮我打扫黄金。 十一点钟帮我打扫下房间。 十分钟以后请帮我的房间卫生打扫一下。 十点半,我们打扫下房间。 十点打扫房间? 十点,我要打扫房间。 卫生没有打扫干净。 卫生间打扫? 卫生间需要打扫。 去马上帮我打扫吧。 只能在帮我打扫卫生。 叫人来打扫下房间。 叫人来打扫房间? 叫他打扫卫生。 叫客房部再来这个房间在座一次打扫全是会。 叫服务员来打扫卫生。 叫服务员来打扫房间。 叫服务员过来打扫一下房间。 叫服务员那个打扫卫生啊,拜拜,嗯。 叫来打扫房间? 可不可以清理房间。 可以帮我打扫一下房间卫生吗? 可以打扫房间了。 可以打扫房间了,谢谢。 可以,然后只要打扫卫生间就可以了桌子上的东西也不用洞床也不用再整理好吧。 吗,能不能安排打扫卫生啊。 呃刚刚的打扫服务,不需要了。 呃我房间需要清理。 呃,交人过来把房间打扫一下。 呃,今天打扫卫生的时候,我这边一个水果拿走了是吗? 呃,这个房间帮我打扫一下好吗? 哎呀,我们这个房间没有帮我们清理房间收拾房间吗?那个浴巾那个床被什么都没有换吗。 哎,你好,就是我们是那个九五六那个帮忙打扫一下。 哎,你好,幺七零八打扫一下房间。 哎,你好,我们这个房间今天咋没打扫呢? 哎,你好,我哎你好,我想找人打扫房间? 哎,你好,我这个七五八房间,麻烦来打扫一下卫生。 哎,你好,我这个房间我进来了,但是好像是没有打没有打扫。 哎,你好,现在那个我的房间没有打扫啊。 哎,你好,给我们把房间打扫一下。 哎,你好,能找人帮我打扫下房间吗? 哎,你好,那个九幺八房间帮我们来打扫一下行吗? 哎,你好,那个我这房间没打扫卫生啊。 哎,帮忙叫一下那个打扫房间。 哎,我那个清理没水,我这个房间我想一个呢,你看看能不能帮我来弄一下的二个呢,到时候今天的话能不能给我换个房间。 哎,打扫房间? 哦行,那另外那个房间能不能帮我找人打扫一下。 哦,你们是几点打扫卫生呢? 哦,你通知一下服务员给打扫下房间两天了,不给打算三水。 哦,叫个来打扫。 哦,想叫个过来打扫下房间? 哦,我要打扫房间。 哦,我那个房间打扫一下。 哦,麻烦七零八打扫一下房间。 唉,你好,呃,你今天那个呃打扫卫生的时候有没有帮我那个床单过来。 唉,你好,嗯,幺六六零九号房需要打扫一下。 唉,你好,嗯,要六六零房间能不能安排一下打扫。 唉,请打扫下卫生。 啊打扫为什么? 啊,不着急吧,反正下午什么时间都可以然后我们那个有个要求,就是那个水杯还有那个刷牙的杯子还有那个马桶让阿姨就是其他的部分相应的打扫就行了。 啊,今天不用打扫房间送水果了。 啊,你好,我想我是那个二幺零二房客,我想了解一下,嗯,那个像是多长时间打扫卫生啊,我看我已经将近四五天了,一直没有打扫卫生,我想了解一下。 啊,你好,这个房间已经延迟一天麻烦你派个人过来打扫卫生。 啊,你最大啥步步帮我取消打扫。 啊,再帮我打扫下房间。 啊,对啊,一会在给我打扫下,九五要。 啊,帮我安排下,打扫卫生。 啊,我们那个房间需要打扫。 啊,我怎么我帮我打扫房间。 啊,我给我们这个打扫卫生了咋还没来了。 啊,打扫卫生。 啊,清理垃圾。 啊,清理房间? 啊,要来打扫卫生。 啊,请把房间打扫一下。 喂,你好,下午帮我打扫下房间。 喂,你好,你打扫一下,我房间。 喂,你好,六二一房间请速来打扫。 喂,你好,我想厅打扫下房间。 喂,你好,是能不能来就是把九零幺打扫一下。 喂,你好,能不能就是把那个九零幺房间打扫一下。 喂,你好,请你给我打扫一下六七零房间。 喂,你好,请安排安排人打扫下房间,好吧,谢谢。 喂,你好,请帮我打扫房间。 喂,你好,请帮我来打扫一下房间好吗? 喂,你好,那个叫服务员把这的八点五房间打扫一下好吗? 嗯,不是要要打扫要房间吗? 嗯,九零三帮我们打扫一下房间。 嗯,九零二打扫下。 嗯,你们那个安排打扫卫生吗? 嗯,你好,九零九帮我打扫一下房间白天我在屋里休息再的。 嗯,你好,我找一下打扫厅的。 嗯,你好,我这边叫的打扫卫生,怎么还没来。 嗯,你好,我那个房间的能不能找人帮我打扫一下。 嗯,你好,那个帮我打扫下房间好吗?现在。 嗯,你好,那个房间麻烦安排过来打扫下。 嗯,你帮我取消吧,我不用那个打扫卫生了帮我取消。 嗯,你能帮我安排一下,打扫卫生吗? 嗯,你能帮我安排下,打扫卫生吗? 嗯,保险打扫一下,然后推荐去。 嗯,六六六房间,我想加紧打扫卫生。 嗯,再帮我安排下,打扫卫生。 嗯,十分钟后帮我打扫一下卫生。 嗯,卫生打扫。 嗯,叫他们帮我打扫下房间幺幺零幺。 嗯,叫服务员打扫房间。 嗯,可麻烦服务员来打扫卫生吗? 嗯,嗯,您好,帮我看一零房间打扫一下。 嗯,安排下,打扫卫生。 嗯,就是,就是今天来打扫。 嗯,帮忙清理房间。 嗯,帮我叫一下保洁过来打扫一下吧。 嗯,帮我房间打扫一下卫生。 嗯,帮我打扫一下卫生。 嗯,帮我看看六零八好房间打扫出来了吗? 嗯,帮我那个安排下打扫卫生吧? 嗯,我们打算了一个玻璃板能不能帮我清理下。 嗯,我们这房间今天咱们打扫呢? 嗯,我我是五一九的那个可能我今天没走走呢,那个为什么没打扫,因为一个我就我送点水吧,矿泉水。 嗯,我房间打扫卫生。 嗯,我打扫卫生。 嗯,我把垃圾桶已经放在门了,帮帮帮我清理。 嗯,我要房间要打扫。 嗯,我要打扫一下卫生。 嗯,我要零七今天你们没来打扫卫生吗?我中午出去的十根你们讲得让你们下午来打扫没人来打扫么要二零七啊。 嗯,我需要全面打扫房间。 嗯,我需要房间打扫一下。 嗯,我,我们的房间怎么没有打扫啊。 嗯,房间帮我打扫下,卫生好吗? 嗯,房间张了,能不再帮我打扫一下。 嗯,房间清理一下。 嗯,房间清理卫生。 嗯,房间能帮我找找人清理一下吗,打扫一下房间。 嗯,打扫。 嗯,打扫一下,反正卫生。 嗯,打扫下房间呢? 嗯,打扫下零九。 嗯,打扫卫生换个床单被罩。 嗯,打扫房间吧。 嗯,打扫房间,谢谢。 嗯,打扫清洁。 嗯,拿两瓶水,今天还没打扫房间,卫生。 嗯,是的,我现在真的房间的帮我打扫一下吧。 嗯,没有了,打扫房间。 嗯,没有,暂时没有,马上有朋友来了,赶紧帮我打扫。 嗯,现在打扫。 嗯,现在还能那个打扫下房间吗? 嗯,现在马上需要房间打扫。 嗯,给我打扫房间。 嗯,给清理下房间。 嗯,能不能帮我打扫下房间呢? 嗯,能帮我安排一下,打扫卫生吗?还有一个是什么来着? 嗯,能帮我安排下,打扫卫生吗? 嗯,能帮我打扫下房间吗? 嗯,要要幺零房间,请打扫一下。 嗯,让服务员打扫一下,要六零三房间。 嗯,让服务员给我来打扫一下房间卫生。 嗯,请帮嗯请帮我打扫一下未房间卫生。 嗯,请帮忙打扫一下吧,五六房间,谢谢。 嗯,请帮我叫上来打扫一下房间今天没有打扫房间。 嗯,请帮我打扫一下,幺二幺要房间。 嗯,请帮我把房间打扫一下。 嗯,请打扫一下房间吧。 嗯,请打扫卫生。 嗯,请现在帮我打扫一下房间。 嗯,请立刻打扫卫生。 嗯,这个打扫卫生。 嗯,这服务员做卫生怎么还肩部帮我打扫卫生呢? 嗯,送两瓶水,然后三点以后打扫房间。 嗯,那个打扫卫生。 嗯,那个等一下请过来打扫一下卫生。 嗯,需要打扫房间。 嗯,马上我打扫下,卫生。 嗯,麻烦帮我房间打扫一下,要八五八吗? 垃圾清理。 声打扫卫生。 天没有打扫卫生,所以没有送水,你给我拿四瓶水。 好人打扫房间? 好,麻烦您那个那个那个客房服务员说一下,下午打扫房间时候帮我这个八十八房间一下那个被罩。 安排人给我房间打扫下。 安排打扫。 家人来帮我打扫房间卫生。 对呀,是早上还在啊,就是打扫卫生不见了。 对啊,现在房间打扫了。 对的,现在打扫一下房间。 对,打扫房间卫生。 对,现在如果安排打扫一下。 对,现在安排打扫卫生。 对,现在就打扫。 对,现在我打扫一下吧。 对,现在现在上来打扫一样吗? 就卫生打扫卫生。 就是我不在幺零零幺,然后今下午是打扫卫生,然后我那个耳钉不见了一个,你们是不是给我扔了。 尽快安排打扫吧。 尽快过来打扫谢谢。 帮我们打扫一下房间。 帮我安排下打扫房间? 帮我房间打扫一下。 帮我打扫一下卫生。 帮我打扫下房间好吗? 帮我打扫下房间幺二幺六。 帮我打扫下,卫生吗? 帮我打扫卫生,房间卫生。 帮我找服务员打扫一下,没有房间。 帮我把房间打扫一下。 帮我改天九点半打扫房间。 帮我清理一下门口的垃圾。 帮我这边九二零打扫卫生,就是垃圾桶地垃圾还有浴巾这些换的其他的就可以了。 帮我送过来,不是帮我打扫。 帮我那个安排下打扫卫生吧? 帮打扫一下房间。 帮打扫下房间。 帮打扫房间打扫房间? 幺六零九打扫房间? 您好,烦请有垃圾请清理。 您好,让服务员过来打扫房间? 您好,那个呃,请打扫下房间。 您好,那个打扫卫生。 我二零三打扫房间都说那个怎么还没安排啊。 我们出门的时候让你打扫房间怎么没有打扫? 我们房间要帮我打扫打理一下。 我们这房间也没有水,昨天也没送水,也没有洗漱,也没有了,没打扫房间。 我刚刚安排的那个打扫服务帮我取消了吧,我不需要了。 我刚才了打扫房间怎么还没过来。 我半年打扫一下。 我取消掉打扫卫生吗? 我想四点钟打扫房间? 我想打扫一下房间。 我想打扫一下,我房间。 我想问一下今天打扫房间的是谁? 我房间打扫呀。 我打好怎么没有打扫? 我打扫卫生啊。 我打扫房间,然后把那个洗淑用品的换一下。 我现在需要打扫房间限女性。 我的意思是他们打扫卫生被子很脏。 我的意思是,是说让这些东西换掉就是说今天清理房间? 我的房间怎么还没来打扫卫生。 我的房间需要清理。 我说你们没有打扫干净。 我说请到房间来吧,房间打扫一下。 我说那个我耳钉掉了一个在房间里面是不是保洁给我打扫卫生给我扔掉了。 我过来打扫下房间。 我这个卫生也没打扫开送都没送,该改换的都没换。 我这个帮清理下房间吗? 我这里卫生还没打扫我们住的是那个,那个那个那个房间。 我这里房间现在上午三点的时不是要打扫怎么现在回来了,还是么脏了。 我那个七五给送的矿泉水房间没打扫机送机行吗? 我那个房间怎么还没打扫卫生呢? 我那个要幺六幺九的房间可以打少了安排一下打扫吧。 我需要打扫一下房间。 我需要打扫放电脑。 我,你好,请问怎么房间还没有打扫呀。 我,我要零六八房间需要打扫。 房打扫卫生? 房间卫生打扫一下。 房间帮我打扫一下,今天不退房。 房间怎么没有打扫? 房间打扫一下,城镇换了。 房间没有打扫吗? 房间需要打扫床单被套更换。 打手也没打扫。 打扫一下房间啊。 打扫一下房间床单被罩换一下。 打扫下卫生吧? 打扫下,要六五二房间。 打扫卫生早餐? 打扫卫生,打扫房间? 打扫屋子。 打扫房的位置。 打扫房间了? 打扫房间换床上的用品。 打扫房间的怎么还没过来。 打扫房间的时候,我就一张车票,现在不见了,请问一下打扫房间的到我的车票吗? 打扫房间,现在。 打扫环境,取消。 把房间打扫一下。 把房间清理一下呢。 把这个我的房间上它现在来给我清理一下,一会来客人。 收拾房间打扫房间? 整理房间打扫房间? 早上十点帮我打扫一下房间。 早上打扫卫生,怎么都不见了啊。 明天不用打扫才开玩笑的。 明天不用过来打扫房间了,前天不用过来打扰了,我明天要在房间里休息。 是的,现在安排清理房间,谢谢。 是这样的,你能不能找个服务员过来帮我打扫下房间吗?没有一个人和最多到处都是。 服务员帮我房间打扫一下。 服务员帮我房间打扫下卫生好吗? 服务员帮打扫下。 服务员打扫卫生,怎么没放牙膏牙刷啊,没有牙膏牙刷啊,刚才没有浴帽,现在没有牙膏牙刷。 未听给我打扫下房间吗? 来打扫卫生。 桌子上的东西部要洞床也不用整理,只要打扫卫生间就可以。 毛巾用完了,你们没有打扫再送两条。 没人来打扫卫生,打扫卫生。 没打扫卫生。 没有了,尽快打扫实行。 没有,那为什么白天我都我都是我都让他那个打扫卫生了他们也没来呢。 浴巾两个卫生没打扫。 清楚,有房间打扫一下为止。 清理一下卫生。 清理一下浴缸清理下。 清理下反证卫生。 清理垃圾。 清理房间七六六。 清理房间打扫卫生。 清理房间,现在。 烧打扫房间? 现在可以清理房间。 现在啊对,我安排打扫。 现在安排吧,电脑一下打扫下。 现在打扫房间送换一下床单儿之类的好吧。 现在打扫谢谢。 给我打扫房间,马上。 给那个服务部打电话打扫卫生。 能不能打扫房间了? 能叫人帮我打扫房间吗? 能帮我打扫一下房间吗? 行,现在就打扫了。 要七五六帮我去打扫一下。 要七六零打扫。 要六一九清理打扫房间。 请叫人给我打扫一下房间。 请吧,要七五六的房间打扫一下。 请帮忙打扫。 请帮我安排一下打扫房间卫生。 请帮我房间卫生打扫下。 请帮我打扫房间。 请帮我来打扫一下微信可以吧。 请帮我紧急打扫下房间。 请房间打扫一下。 请打扫卫生。 请打扫卫生吧,上。 请打扫吧,幺二房间。 请抓紧给我打扫房间。 请清理下房间。 请立即请帮我打扫下房间。 请给我打扫房间。 请问可以帮我打扫一下房间吗? 请问来打扫卫生。 请马上打扫打扫房间? 请麻烦你来帮我打扫一下房间吗? 还可以帮我那个卫生间里打扫下吗? 这个人工来打扫卫生呢? 这个房间有打扫过吗? 这个房间没有打扫。 这个房间清理一下。 这房间打扫一下。 这样你把要七五六这个房间打扫一下,因为可能要坏人住啊。 这边房间能打扫下吗? 这还有送两千关起来吧,那个早上没有打扫房间,昨天送应用完了。 这这个房间上午不要打扫了。 这部要打扫房间? 送两瓶矿泉水,请服务员,请打扫房间的服务员送进来好吗,我要离开门了。 通知打扫房间? 速度过来,打扫卫生。 那不是我们是居住的,你说办法,我们今天没有,不要求他们不打扫房间没有放。 那个一下那个他们打扫卫生把那个吹风机打。 那个一六七今天打扫卫生吗? 那个帮我打扫下房间。 那个帮我打扫房间。 那个我一会来客人的,我想让你们服务员现在把我房间彻底打扫一遍好不好? 那个我这里今天没打扫卫生,但是。 那个房间漏水了,请尽快派人来修理打扫吧。 那个明天不要过来给我打扫卫生了通知客房。 那个过来我房间打扫下。 那个那个我取消吧,我不要打扫卫生了帮我取消掉。 那个麻烦能帮我打扫下房间吗?房房间间没有打扫。 那个,嗯,我这里是九幺零麻烦清理打扫一下卫生。 那二打扫房间。 那是九零要打扫卫生。 那是昨天放的今天没有,我们有让他们打扫卫生都没就没有放。 除了打扫还有更换床上用品。 零六帮我安排下过来打扫。 需要打扫房间,现在就来。 需要打扫房间? 需要清理房间漏水了。 额安排一下,打扫卫生。 额样子,就是要九零六房间,我想要一下那个洗漱用品,嗯,因为今天我没有让打扫房间? 麻烦一下我们打扫一下是应该怎么按? 麻烦你来打扫卫生。 麻烦帮我八零一打扫一下卫生。 麻烦帮我打扫一下。 麻烦打扫一下卫生。 麻烦打扫卫生赠送水果。 麻烦把房间打扫一下。 麻烦给我打扫房间换床单,被罩。 麻烦给打扫下房间吗? 嗯,你有男朋友吗? 你是机器人吧? 嗯,你好,那个帮我打扫下房间好吗?现在。 五分钟后帮我打扫下,卫生。 你是人工台吗? 唉,那个你们这那个服务员现在马上帮我整理房间的,我下去吃饭了,一会我还上来。 清理房间,现在。 现在可以清理房间。 你有男朋友吗? 嗯,请现在帮我打扫一下房间。 嗯,现在马上需要房间打扫。 这个是人工服务吗? 嗯,送两瓶水,然后三点以后打扫房间。 现在打扫卫生。 把这个我的房间上它现在来给我清理一下,一会来客人。 打扫房间? 打扫卫生。 帮我打扫下房间。 嗯,打扫房间。 帮我打扫一下房间。 嗯,打扫卫生。 嗯,帮我打扫下房间。 清理房间? 房间打扫? 打扫? 帮我打扫房间。 打扫一下房间。 房间打扫一下。 打扫下房间? 请帮我打扫下房间。 收拾房间? 明天早上六点叫我起床。 嗯,打扫下,卫生。 整理房间? 叫服务员帮整理房间。 您好,打扫卫生。 五零二打扫房间? 换床单。 房间需要打扫。 呃,打扫房间。 收垃圾。 嗯,房间打扫。 房间打扫卫生。 打扫房间卫生? 换一下床单。 打扫服务。 请打扫房间? 五点的叫醒服务,帮忙给我改一下改成五点半的。 喂,你好,你打扫一下,我房间。 那个房间漏水了,请尽快派人来修理打扫吧。 嗯,拿两瓶水,今天还没打扫房间,卫生。 嗯,打扫房间吧。 叫来打扫房间? 哎,明天早上七点四十莫林。 你这服务员帮我房间打扫下。 哦,叫个来打扫。 你好,请帮我找人打扫房间? 嗯,帮我收的水过来。 请帮我打扫一下房间。 要七五六帮我去打扫一下。 帮我预约明天早上七点的叫醒。 我打扫房间,然后把那个洗淑用品的换一下。 明天七点的叫醒我。 嗯,六六六房间,我想加紧打扫卫生。 给那个服务部打电话打扫卫生。 清楚,有房间打扫一下为止。 下午帮我打扫下房间就九五二。 哎,你好,就是我们是那个九五六那个帮忙打扫一下。 嗯,收拾下房间。 麻烦请收拾一下房间里的垃圾。 嗯,你好,可以换一下被子吗? 人来收拾下房间,谢谢。 那个没有人来帮我收拾一下房间吗? 嗯,四点钟叫醒。 房间卫生打扫一下。 这房间打扫一下。 嗯,收一下房间。 哎,我刚才已经交了来啦,一干洗的衣服怎么的,现在没人来,来洗衣服洗衣服。 嗯,我需要全面打扫房间。 西郊那个呃,这帮我们收一下那个垃圾。 请问来打扫卫生。 您好,明天五点五十叫醒服务。 哎,你好,我哎你好,我想找人打扫房间? 喂,你好,能不能就是把那个九零幺房间打扫一下。 能不能打扫房间了? 哎,你好,那个九幺八房间帮我们来打扫一下行吗? 下午给九零幺房间打扫一下。 嗯,明天早上帮您看八点半。 可不可以清理房间 房间帮我打扫一下,今天不退房。 明天早上五点叫我一下吧。 您好,收拾垃圾。 嗯,送两瓶水,然后三点以后打扫房间。 垃圾清理。 清理房间,现在。 打扫卫生,打扫房间? 啊,你好,这个房间已经延迟一天麻烦你派个人过来打扫卫生。 嗯,明天早上七点半叫醒一下。 嗯,我要打扫房间。 叫服务员过来打扫一下房间。 嗯,那个等一下请过来打扫一下卫生。 你好,能帮我先过来打扫一下房间吗? 嗯,你好,那个房间麻烦安排过来打扫下。 帮我订一个二十七号下午三点的叫醒。 嗯,你好,我这边叫的打扫卫生,怎么还没来。 清洁打扫房间? 嗯,明天五点叫醒啊。 麻烦帮我打扫一下。 可以打扫房间了,谢谢。 嗯,这个打扫卫生。 请帮我安排一下打扫房间卫生。 呃,交人过来把房间打扫一下。 帮打扫房间打扫房间? 嗯,你好,那个帮我打扫下房间好吗?现在。 嗯,能帮我安排一下,打扫卫生吗?还有一个是什么来着? 设置明天早上六点五十的叫醒服务。 我打扫下,卫生。 这个房间清理一下。 早上九点叫醒。 你好,那个先可以打扫滴幺八幺二吗,让我住下。 嗯,帮我打扫房间。 嗯,打扫房间,谢谢。 我这里卫生还没打扫我们住的是那个,那个那个那个房间。 嗯,再个人来整理房间? 帮我打扫下房间幺二幺六。 明天早上五点叫醒一下。 安排打扫。 帮我转到给我找一个清洁清洁的阿姨的可以吗? 嗯,请帮忙打扫一下吧,五六房间,谢谢。 您好,那个打扫卫生。 嗯,你好,我想要一个明天早上六点钟的叫醒服务。 嗯,我需要房间打扫一下。 那二打扫房间。 哦,麻烦七零八打扫一下房间。 请打扫吧,幺二房间。 嗯,不是要要打扫要房间吗? 帮我安排下打扫房间? 哎呀,我们这个房间没有帮我们清理房间收拾房间吗?那个浴巾那个床被什么都没有换吗。 一点十五叫我起床。 您好,那个呃,请打扫下房间。 我,我要零六八房间需要打扫。 嗯,打扫。 你们哪六点叫醒吗?谢谢啊。 现在打扫卫生。 哎,你好,能找人帮我打扫下房间吗? 七点十五分叫醒确定吗,确定吗? 喂,你好,能找前台那个幺五零二这个房间门上了他处理快餐。 你好,我这里是五一二房间那个早上还没有打扫麻烦您叫人过来帮我们打扫一下,谢谢。 帮我房间收拾下。 我想打扫一下,我房间。 你好,请安排打扫下,卫生。 收拾? 唉,你能不能提供那个吸尘器服务。 哦,我那个房间打扫一下。 未听给我打扫下房间吗? 您这早上五点三十分叫醒。 嗯,能帮我安排下,打扫卫生吗? 啊,我们那个房间需要打扫。 啊,打扫卫生。 我需要打扫一下房间。 我的房间需要清理。 我打扫房间? 请问可以帮我打扫一下房间吗? 哎,你好,那个我这二五零九这屋子需要用吸尘器把那个会成一下好吗? 嗯,打扫下零九。 把这个我的房间上它现在来给我清理一下,一会来客人。 您好,让服务员过来打扫房间? 七十机器人来给我打扫下房间。 个房间有话筒吧,用那个三点钟在打扫吧。 七幺七,明天早上八点叫醒。 八点半叫醒。 不一样,我要打扫一下房间洗衣服。 那个八六零,我这里是明天早上六点二十叫醒服务。 嗯,你好,我那个房间的能不能找人帮我打扫一下。 嗯,请帮嗯请帮我打扫一下未房间卫生。 嗯,那个打扫卫生。 有一个今天下午三点的叫醒。 今天不用打扫房间了。 嗯,卫生打扫。 帮我打扫下,卫生吗? 呃我房间需要清理。 订个五点的叫醒服务。 请叫人给我打扫一下房间。 嗯,明天早晨六点五十分叫醒。 我二零三打扫房间都说那个怎么还没安排啊。 清理下反证卫生。 声打扫卫生。 嗯,请帮我打扫一下,幺二幺要房间。 嗯,我要房间要打扫。 帮我把房间打扫一下。 唉,你好,呃,你今天那个呃打扫卫生的时候有没有帮我那个床单过来。 啊,请把房间打扫一下。 嗯,你能帮我安排下,打扫卫生吗? 为什么没有人打扫卫生。 嗯,帮我打扫一下卫生。 啊打扫为什么? 打扫卫生早餐? 嗯,让服务员过来整理一下房间。 五分钟后帮我打扫下,卫生。 我们房间要帮我打扫打理一下。 安排人给我房间打扫下。 哦,想叫个过来打扫下房间? 哎,你好,我这个七五八房间,麻烦来打扫一下卫生。 嗯,叫服务员打扫房间。 哎,你好,幺七零八打扫一下房间。 嗯,请现在帮我打扫一下房间。 嗯,需要打扫房间。 啊,我怎么我帮我打扫房间。 叫他打扫卫生。 明天上午七点叫起叫醒。 啊,喂,你好,能帮我那个明天早上七点半叫醒我吧。 嗯,帮我叫一下保洁过来打扫一下吧。 你好,叫服务员把我房间整理一下。 亲,明天早上五点叫醒。 嗯,打扫下房间。 唉,请打扫下卫生。 要七六零打扫。 明天早上五点半叫醒我。 唉,那个你们这那个服务员现在马上帮我整理房间的,我下去吃饭了,一会我还上来。 啊,要来打扫卫生。 麻烦打扫卫生赠送水果。 打扫房间的怎么还没过来。 嗯,我打扫卫生。 你好,帮我打扫房间。 嗯,我要打扫一下卫生。 六点半叫醒。换一下床单 喂,你好,请帮我来打扫一下房间好吗? 为什么今天没有打扫卫生啊。 明天上午七点三十分叫早六一九号房。 嗯,请打扫卫生。 请立即请帮我打扫下房间。 嗯,我想明天早上六点半叫早。 你好,给我打扫下房间。 那是九零要打扫卫生。 哎,你好,要五二幺这边卫生嘉里没只了那个送点纸吗? 嗯嗯,下午六点钟叫我一下。 给我打扫房间,马上。 你好,请帮我房间打扫下。 嗯,让服务员给我来打扫一下房间卫生。 准备帮我打扫房间呢? 您好,烦请有垃圾请清理。 你好,麻烦过来帮我整理一下房间吧,把传单被套的换一下。 没打扫卫生。 你好,八零九吧,收拾房间呗。 请抓紧给我打扫房间。 五点半叫醒。 把房间打扫一下。 喂,你好,请帮我打扫房间。 喂,你好,是能不能来就是把九零幺打扫一下。 喂,你好,请你给我打扫一下六七零房间。 喂,你好,我想厅打扫下房间。 你好来打扫一下房间。 服务员帮我房间打扫一下。 可以帮忙收一下门口的垃圾吗? 九六八打扫房间。 请帮我来打扫一下微信可以吧。 啊,帮我安排下,打扫卫生。 帮我定明天早上三点的叫醒。 嗯,帮我订一个八点和八点五十的叫醒。 呃,这个房间帮我打扫一下好吗? 嗯,四点半叫醒好。 嗯,给我打扫房间。 好人打扫房间? 客房清洁。 我半年打扫一下。 请房间打扫一下。 那个过来我房间打扫下。 那个麻烦能帮我打扫下房间吗?房房间间没有打扫。 嗯,让服务员打扫一下,要六零三房间。 七七零打扫房间? 收一下房间。 嗯,房间卫生改一下的。 我这个帮清理下房间吗? 嗯,保险打扫一下,然后推荐去。 嗯,可麻烦服务员来打扫卫生吗? 嗯,明天那个五点十五分叫醒。 六点十八分叫醒我号码。 八点的叫醒。 我需要清洁服务。 但是我打扫房间调承担。 嗯,马上我打扫下,卫生。 幺六零九打扫房间? 六点半叫我起床。 麻烦把房间打扫一下。 嗯,下午五点的叫醒。 帮我打扫卫生,房间卫生。 我安排个人收拾下房间呗。 六六六房间需要清理房间。 你能过来帮我收一下垃圾吗? 可以帮我打扫一下房间卫生吗? 换枕头。 清洁。 把房间清理一下呢。 去马上帮我打扫吧。 那个给我弄个七点十分的叫醒吧。 你好,将来那个整理房间。 您好,请到我房间来收一下果盘。 嗯,请立刻打扫卫生。 你好,请麻烦你叫服务员来给清理下房间,好吧。 您好,这服务员帮整理房间。 请帮我打扫房间。 我想打扫一下房间。 明天早上七点半叫醒。 我过来打扫下房间。 嗯,我们打算了一个玻璃板能不能帮我清理下。 九零三卫生来打扫一下。 嗯,你帮我收拾房间。 布拖。 喂,你好,下午帮我打扫下房间。 哎,你好,给我们把房间打扫一下。 嗯,能帮我打扫下房间吗? 嗯,你能帮我安排一下,打扫卫生吗? 嗯,给清理下房间。 嗯,麻烦帮我房间打扫一下,要八五八吗? 叫服务员那个打扫卫生啊,拜拜,嗯。 唉,你好,嗯,幺六六零九号房需要打扫一下。 请麻烦你来帮我打扫一下房间吗? 查收一下只是免费的吗?是固定的吗? 嗯,请帮我叫上来打扫一下房间今天没有打扫房间。 那个帮我打扫下房间。 嗯,明天五点半叫醒我。 嗯,请打扫一下房间吧。 请帮我房间卫生打扫下。 啊,你好,我想我是那个二幺零二房客,我想了解一下,嗯,那个像是多长时间打扫卫生啊,我看我已经将近四五天了,一直没有打扫卫生,我想了解一下。 麻烦帮我八零一打扫一下卫生。 嗯,帮忙清理房间。 嗯,你好,麻烦明天早上八点叫醒一下。 明天早上六点四十叫醒。 打扫下卫生。 你好,幺五幺幺幺五幺幺打扫卫生。 麻烦你来打扫卫生。 嗯,房间清理一下。 现在想赶快要洗衣服,那收一下吧,因为我明天退房,明天中午也要。 速度过来,打扫卫生。 帮打扫下房间。 嗯,叫他们帮我打扫下房间幺幺零幺。 嗯,九零三帮我们打扫一下房间。 八点叫醒。 您好,请问来清洁房间。 嗯,早上六点叫我起床。 请帮忙打扫。 请马上打扫打扫房间? 帮我们打扫一下房间。 为方便的时候把那个床单换一下吗? 你好,明天给我叫醒三点叫醒好吧。 这部要打扫房间? 七七零打扫下房间。 那个帮我打扫房间。 嗯,房间收视一下。 我都,我现在洗衣服的话最快什么时候能给我送回来。 现在可以清理房间。 我,我们收拾下吧。 通知打扫房间? 嗯,打扫一下,反正卫生。 嗯,现在马上需要房间打扫。 帮我整理房间。 九二零打扫一下房间。 你好,服务员整理房间。 嗯,帮我订一个八点五十的叫早。 六点五十分叫醒。 哎,你好,我要一个明天早上六点的叫早服务。 啊,早上七点三十叫醒。 烧打扫房间? 嗯,嗯,您好,帮我看一零房间打扫一下。 房打扫卫生? 他们打扫房间? 五分钟后,我要洗下衣服。 请吧,要七五六的房间打扫一下。 啊,我给我们这个打扫卫生了咋还没来了。 打扫下,要六五二房间。 请打扫卫生吧,上。 嗯,打扫下房间呢? 为啥洗衣服务,现在马上过来。 你好,打扫卫生。 哎,帮忙叫一下那个打扫房间。 嗯,请帮我把房间打扫一下。 九六八收一下垃圾。 那个我这里今天没打扫卫生,但是。 九五二打扫房间? 麻烦给打扫下房间吗? 你这打扫房间? 行,换一下床单。
打扫1.0.0.0502
2020-05-02T13:29:34.000Z
(PT|PL|ES|EN)SVG(A|U)(001|801|992|994)
PLSVGA001 PLSVGA801 PLSVGA992 PLSVGA994 PLSVGU001 PLSVGU801 PLSVGU992 PLSVGU994 PLSVGU002 PLSVGU802 PTSVGA001 PTSVGA801 PTSVGA992 PTSVGA994 PTSVGU001 PTSVGU801 PTSVGU992 PTSVGU994 PTSVGU002 PTSVGU802 ESSVGA001 ESSVGA801 ESSVGA992 ESSVGA994 ESSVGU001 ESSVGU801 ESSVGU992 ESSVGU994 ESSVGU002 ESSVGU802 ENSVGA001 ENSVGA801 ENSVGA992 ENSVGA994 ENSVGU001 ENSVGU801 ENSVGU992 ENSVGU994 ENSVGU002 ENSVGU802 ----------- PTSVZC001
Detect certain G Suite SKUs
2020-12-17T20:41:10.000Z
^((ht|f)tp(s?)\:\/\/|~\/|\/)?([\w]+:\w+@)?([a-zA-Z]{1}([\w\-]+\.)+([\w]{2,5}))(:[\d]{1,5})?((\/?\w+\/)+|\/?)(\w+\.[\w]{3,4})?((\?\w+=\w+)?(&\w+=\w+)*)?
http://google.com
url regex
2015-11-25T14:22:50.000Z
league/((?P<league_slug>[\w-]+)(/(?P<season_slug>\d{4}(-\d{4})?))?(/(?P<action_slug>[\w\-\_]+[(-|_)]?[\w]+))?)?(/)?
http://localhost:8010/league http://localhost:8010/league/ http://localhost:8010/league/serie-a http://localhost:8010/league/serie-a/ http://localhost:8010/league/serie-a/2016 http://localhost:8010/league/serie-a/2016/ http://localhost:8010/league/serie-a/2015-2016 http://localhost:8010/league/serie-a/2015-2016/ http://localhost:8010/league/serie-a/s-t-a-n-d-i-n-g-s http://localhost:8010/league/serie-a/stand_-aasdings/ http://localhost:8010/league/serie-a/2016/standings http://localhost:8010/league/serie-a/2016/standings/ http://localhost:8010/league/2016 http://localhost:8010/league/2016/ http://localhost:8010/league/standings http://localhost:8010/league/standings/
Brasileirão - Url de leagues
2016-03-16T13:10:25.000Z
Does what it says on the tin.
\b[2-7a-z]{16}\.onion\b
2345672345672345.onion.to
Search for .onion domains
2017-07-30T20:27:50.000Z
(\d?)(\d{3})(\d{3})(\d{2})(\d{2})
89132894852
phone
2017-07-22T15:32:41.000Z