description
stringlengths
0
8.24k
regex
stringlengths
1
26.3k
text
stringlengths
0
2.47M
title
stringlengths
1
150
created_at
stringlengths
24
24
A more thorough UK postcode validator tested against all UK postcodes on a regular basis, but excluding the special GIRO postcode case out of personal preference. Additionally has capture groups for the In-code and Out-code sections. Requires case insensitive matching.
([A-PR-UWYZ](?:[A-HK-Y][0-9](?:[0-9]|[ABEHMNPRV-Y])?|[0-9]([0-9]|[A-HJKPSTUW])?)) ?([0-9][ABD-HJLNP-UW-Z]{2})
DA11 0AA WC1H 1AA N1 2AA
Thorough UK Postcode Validator with In/Out code capture groups
2016-09-30T15:51:02.000Z
Checks if url is valid for node api
(http:\/\/|https:\/\/)((([0-9]\.){4})|[a-z0-9\-_\.][a-z0-9\-_\.]+)(\:)([0-9]{1,5})
http://node.org:443 https://sa.com:1 https://a:31 123.123.123.123:231 http://213.123.123.122:231
IOTA Node validation
2018-01-24T02:33:56.000Z
Match any format of YouTube link for YouTube embeds in any web project.
(.*youtube\.com)\/(embed\/videoseries\?|watch\?|playlist\?)(.*v=([^&]+))?(&)?(.*list=([^&]+))?|(.*youtu\.be)\/([^?]+)?((\?)?(.*list=)([^?]+))?
http://www.youtube.com/watch?v=vpiMAaPTze8 http://youtu.be/l_la5XiQJdk http://youtu.be/NLqAF9hrVbY https://youtu.be/qT47KF5pvfw https://youtu.be/zImHyTyYhM8?t=4s http://www.youtube.com/v/NLqAF9hrVbY?fs=1 http://www.youtube.com/watch?v=NLqAF9hrVbY http://www.youtube.com/user/Scobleizer#p/u/1/1p3vcRhsYGo http://www.youtu...
YouTube embeb
2020-06-20T18:00:20.000Z
Work in progress
^([a-zA-Z0-9]+)(@)([a-zA-Z0-9]+(\.[a-zA-Z0-9]+)(\.[a-zA-Z0-9]+))*$
mrk447@gmail.co.uk
Standard email
2018-04-02T02:11:25.000Z
<i class="i-add"><\/i>(.*?)<i
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <link rel="Shortcut Icon" href="//www.dpfile.com/s/res/favicon.5ff777c11d7833e57e01c9d192b7e427.ico" type="image/x-icon" /> <meta n...
大众点评结婚板块地址
2018-01-13T02:15:09.000Z
Will match anything after p
b.*
b
The multiplier
2018-02-18T06:25:04.000Z
Prepare batch job for opportunity close
^(.*)$
1-10RD724 1-I94YUBU 1-HRF87G6 1-FV4IAE3 1-E30MNAI 1-10RD724 1-ED94GUQ 1-4J1QEY1
Opportunity Close
2023-09-08T17:15:37.000Z
(\S| )+\n(\S| )+\n(\S| )+\n((\S| )+|)NSW \d{4}
/////// 4 lines & 3rd line is suburb only SCIENTIFIC MOTOR BODYWORKS LP 7-9 PERRY STREET MATRAVILLE NSW 2036 /////// au Mascot Auto Repairs"cod** 155 Coward Street Mascot NSW 2020 //////////////////////// Mascot Airport Service Station *cod* Inside Car Wash 237 O'Riordan St Mascot NSW 2020 ////////////////////////maps ...
test
2018-03-17T20:21:15.000Z
^(?![.]+$)\d+(\.\d{1,})?$|^(\.\d{1,})?$
10 0.000001 .000001 0 0.00 1.00 -1 -0 -0.00001
For positive numbers and floats
2019-08-08T09:48:42.000Z
Based on [https://stackoverflow.com/questions/26313315/regex-to-match-doi-in-pdf-with-pypdf2](https://stackoverflow.com/questions/26313315/regex-to-match-doi-in-pdf-with-pypdf2)
\b(10\.[0-9]{4,}(?:\.[0-9]+)*\/(?:(?![\"&\'])\S)+)\b
Herbst, D. M., Griffith, N. R., & Slama, K. M. (2014). Rodeo cowboys: Conforming to masculine norms and help-seeking behaviors for depression. Journal of Rural Mental Health, 38, 20–35. http://dx.doi.org/10.1037/rmh0000008 Herbst, D. M., Griffith, N. R., & Slama, K. M. (2014). Rodeo cowboys: Conforming to masculine ...
Digital Object Identifier (DOI)
2017-08-17T14:28:55.000Z
(NAME)((\s)?:(\s)?)([ |,| (|)|\\|\.|\"|\w|\-|\+]*)((\s)*?,(\s)*?)(DESCR)((\s)?:(\s)?)([ |,| (|)|\\|\.|\"|\w|\-|\+]*)(\s)
WDL3-4N-C4510-1A#show inventory NAME: "Switch System", DESCR: "Cisco Systems, Inc. WS-C4510R+E 10 slot switch " PID: WS-C4510R+E , VID: V03 , SN: FOX1616GNS8 NAME: "Clock Module", DESCR: "Clock Module" PID: WS-X4K-CLOCK-E , VID: V01 , SN: NWG161794PT NAME: "Mux Buffer 1 ", DESCR: "Mux Buffers for Redundanc...
show inventory Partial)
2017-02-11T21:23:45.000Z
^\$(?!set|delset|quote| )($|.*)
$ "@(#) CatGene.src (OpenDrive) revision: 4.2 date: 00/01/24 18:17:30" $ $ toutes gravites Protocole Rip4 de 3000 à 3999 $ toutes gravites MIPS MPITECH a partir de 3100 $ gravites FATALE ProtoKdk de 3201 à 3209 $ $ "@(#) CatEnrichir.src (OpenDrive) revision: 4.21 date: 11/03/07 11:16:32" $ $ Provenance E...
Replace bad comments
2017-04-13T13:05:19.000Z
This finds the boundaries of words in a camel case string
(?<=[a-z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])
CamelCase ThisIsTest ThisIsATest
Search for word breaks in CamelCase string
2021-07-27T15:27:45.000Z
Una muestra dle inventario de ZTE
U\d*_([A-Za-z0-9\_]+)(?:\s*\d\s*\d*\s*\d*\s*\d*\s*\d*\s*\d*\s*\d*\s*(\d*)\s*\d*\s*\d*\s*\d*\s*(\d*)\s*\d*\s*\d*\s*(\d*))
U2_BOMBEROS_MERIDA4 1 734 4 0 0 0 0 54524 1 1 1 55302 0 0 ...
Inventario_ZTE
2020-06-23T20:20:59.000Z
(?:(?:\/\/)|(?:\/\*)|(?:<!--))?(?:[\s]*?#region)(?:([\s\S]*?)(?:(?:[\s]*?\*\/)|(?:-->))?[\n\r])([\s\S]*?)(?:(?:\/\/\s*?)|(?:\/\*)|(?:<!--))?(?:[\s]*?#endregion)(?:[\s\S]*?[\n\r])(?:[\s\S]*?)(?:(?:-->)|(?:\*\/)?)
#region regionname code hereasdasd #endregion // #region regionname code hereasdasd // #endregion export module DefaultModel { const thisVarShouldBeDestroyd: boolean = true; #region regionname code here asdasdasd #endregion class function() { // MARK: markname function() { } code1 a...
region find
2019-07-09T06:22:56.000Z
[a-zA-Z0-9\-?=%]+\.[a-zA-z]{2,}[a-zA-Z0-9_?=\-%/]*
Should match: Переходи и жми готово https://t.me/InviterCASHbot?start=785698394asd asd t.me/johhhn t.me/johhhn a.aa/ a.aa/dsadasd vk.co asd.xn---1233/--- Should not match: a b a.a// 1.555/ a.551/
Url match
2019-01-19T19:34:00.000Z
(\w[\w\.]*)(?=@\w+\.[\w\.]+)\b
I need a regular expression that will match email addresses, but exclude specific email addresses from the match e.g. do not match; charlie@outrunthebear.co.uk mailto: sponge.bob@example.com jim.bob@example.com billy.bob@example.com match all other email addresses; may be test@example.com or a@b.com a.b.c@d.e.f.com ...
first name from all email ids
2018-08-06T06:22:50.000Z
^\/([a-zA-Z]{2}-[a-zA-Z]{2})\/cms\/api\/preview([a-zA-Z0-9-_=\/]*)(\?)?(.*)
/en-US/cms/api/preview/pippo/paperino/pluto/minni/amelia#user=Artibani?qui=qua&quo=qui /en-US/cms/api/preview/pippo/paperino/pluto/minni/amelia#/user=Artibani?qui=qua&quo=qui /en-US/cms/api/preview/pippo/paperino/pluto/DePaperoni=ricco/amelia/#user/Artibani?qui=qua&quo=qui /en-US/cms/api/preview/pippo/paperino/pluto/De...
Version for ECMAScript with query strings
2019-05-14T09:29:49.000Z
This regex validates an email against RFC 5322 with RFC 6530 merged in. This allows for checking for International email addresses. Note that this regex works on bytes so any Unicode characters will have to be encoded in UTF-8 before they will pass.
^ (?&address) $ (?(DEFINE) (?<ALPHANUMERICE> [A-Za-z0-9!\#$%&'*+\-\/=?^_`{|}~] ) (?<CFWS> (?: (?: (?&FWS)? (?&comment) )++ (?&FWS)? ) | (?&FWS) ) (?<FWS> (?&WSPCRLF)++ ) (?<UTF8_extra_char> (?=[\x{C2}-\x{DF}\x{E0}-\x{EF}\x{F0}-\x{F4}]) (?: (?&UTF8_2) | (?&UTF8_3) ...
John <a@b.c>, w@com, "wibb.[dhdhd]"@(comment)fred.com
The Ultmate Email validation regex
2018-10-12T10:54:23.000Z
Russian phone number
^(\d[^\w\d]?){10}\d$
89299920290
Phone (rus)
2022-08-04T07:46:14.000Z
This regular expression can be used to verify html (by removing the anchor before `pair`), as well as extract elements of html (specify elements before the `pair`).
(?(DEFINE) (?<void>br|img|area|base|col|command|embed|hr|input|keygen|link|meta|param|source|track|wbr|!DOCTYPE) (?<any>[^<>]*+) ) <div \s class="card"> (?P<pair> (?&any) (:? <(?P<v_tag>(?!\/)(?&void))(?&any)> (?:(?&pair) | (?&any))*+ (<\/(?P=v_tag)>)? | <(?P<tag>(?!\/)[^<> ]++)(?&any)> (?:...
<!DOCTYPE html> <html> <head> <title>Example</title> </head> <body> <div class="card-container"> <div class="card"> <h5>First MD Card</h5> <img src="https://mdbootstrap.com/img/Photos/Horizontal/Nature/4-col/img%20(34).jpg" alt="Card image cap"> ...
HTML
2022-07-21T23:45:44.000Z
Utilize " -- " as a Token and strips from the token to the end of the line.
(\s*--.*)(,?)$
-- Input Part of a String -- Additional Text String without Token Another String with Text -- Some More Text String with 1 - is fine String with\-\- is fine But String with -- Is shortened
Strip from Token to End of Line
2021-08-24T00:28:34.000Z
(?:(?:https?|ftp|file):\/\/|www\.|ftp\.)(?:\([-A-Z0-9+&@#\/%=~_|$?!:,.]*\)|[-A-Z0-9+&@#\/%=~_|$?!:,.])*(?:\([-A-Z0-9+&@#\/%=~_|$?!:,.]*\)|[A-Z0-9+&@#\/%=~_|$])
08/27/2018 08:55:31 AM : FTP - ftp://media3.canthotv.vn/ngan/2018/TH/08/27/lekhaigiang.mp4 - Source File: C:\Users\tdngan\AppData\Local\Temp\work_85.prproj - Output File: C:\000\thebhyt.mp4 - Preset Used: canthotv - Video: 1024x576 (1,0), 25 fps, Progressive, Software Encoding, 00:00:31:19 - Audio: AAC, 112 kbps...
Lấy link từ log
2018-08-27T03:17:34.000Z
(^\".*\") (\w*) ?(\w*\(.*\))? ?((NOT)|(NULL))? ?((NULL))?
"ParentID" uuid "CREATEDA" date NOT NULL "CREATEDA" date NULL "CREATEDA" character varying(200) NULL "CREATEDA" numeric NOT NULL "CREATEDA" numeric(200,4) NOT NULL "CreatedA" a NOT NULL
Some sql beauty
2018-09-05T13:10:13.000Z
(')(\<\?php echo L10n\:\:message\('dialog.delete', )(L10n\:\:label\()(.*?)(\); \?\>)(')
'<?php echo L10n::message('dialog.delete', L10n::label(MODULE)); ?>' '<?php echo L10n::message('dialog.delete', L10n::label('client', true)); ?>' '<?php echo L10n::message('dialog.delete', array('module' => L10n::label('frequency'))); ?>' '<?php echo L10n::message('dialog.delete', L10n::label('file')); ?>' '<?php echo ...
Min
2019-09-04T15:29:41.000Z
(.*facebook.com.groups.*|.*meetup.com.*)
facebook.com/groups/ facebook.com facebook.com/groups/12245 facebook.com/groups meetup.com
Facebook Groups and Meetup - Link Check - Group Data
2017-07-19T00:17:01.000Z
\[([0-9]{4}\.[0-9]{2}\.[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2})\] \[([a-zA-Z]+)\] \[(.+)\] \[(.+)\] (.*)
[2019.01.10 22:45:37] [INFO] [main] [Config] Starting to load configuration! [2019.01.10 22:45:38] [WARN] [main] [Config] Value for key: shard_num was not provided! Using default value: "-1" [2019.01.10 22:45:39] [WARN] [main] [Config] Value for key: default_prefix was not provided! Using default value: ";" [2019.01.10...
cascade
2019-01-11T04:56:50.000Z
The regular expression checks for the street numbers or apartment numbers of addresses. It also assumes that the numbers can have a prefix or suffix. Unit/Apartment numbers are of the form Unit Number/Street Number e.g. 10/12.
^(([A-Z])*(\d+)([A-Z])*)(-|\/|&)*(([A-Z])*(\d+)([A-Z])*)*((\/)*(([A-Z])*(\d+)([A-Z])*))*
Regular Expression For Address Street and Apartment (Unit) Numbers
2019-12-02T04:41:20.000Z
Simplified version for validating Mainland China Mobile Phone Numbers.
(13[0-9]|14[579]|15[0-35-9]|16[6]|17[0135678]|18[0-9]|19[89])[0-9]{8}$
Simplified Mainland China Mobile Phone Number
2018-07-06T08:07:49.000Z
Find Hello world!
Find the "Hello world!" string in the following paragraph:
Lorem ipsum dolor sit amet, Hello Wolrd! consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Hello world! Duis aute irure dolor in reprehenderit in voluptate velit esse...
Hello World exercise
2022-09-10T09:57:01.000Z
<table.*?>(([\s*].*(\s*))+)?<\/table>
<h3>Disabilities Reported</h3> <p><img src="https://chart.apis.google.com/chart?chtt=Disabilities Reported&amp;chs=500x200&amp;chco=76A4FB,224499,FF0000,80C65A,00FF00,FFC020&amp;chxt=x,y&amp;chxl=0:||1:|0%|25%|50%|75%|100%&amp;cht=bvg&amp;chd=t:80|16|1|4|1|5&amp;chdl=Blindness - 80%|Low Vision/Visually-Impaired - 16%|C...
Get the HTML table tag and all contained content
2019-10-22T20:56:37.000Z
Valid: 0.00 123.12k 123,123,123.12m 123,123,123,123.00b Invalid: 00.000 123456.12k 123,1234.12b 1234,123.12m
^[0-9]{1,3}((\,[0-9]{3})*)\.[0-9]{2}[kmb]?$
0.00 123.12k 123,123,123.12m 123,123,123,123.00b
Not Full Amount with kilo, million, billion
2018-03-16T04:04:03.000Z
<tr>(.*?)<\/tr>
<tr> <td class="no-min-width " style="" width="45" data-col="0"> <a href="/[ステージオブマジック]島村卯月"> <img src="https://cdn.img-conv.gamerch.com/img.gamerch.com/imascg-slstage-wiki/wikidb_thumbnail/338316/individual_200.jpg?d=20190419162924&amp;q=20" class="lazy ui_thumbnail" data-original="https://cdn.img-conv.gamerch...
tr inside
2020-10-13T09:39:40.000Z
COPD\sGOLD\s([0-9])([A-Z])?\b
Infektexacerbierte COPD GOLD 2 COPD GOLD 2 COPD GOLD 3B Betablocker wurden bei COPD GOLD 4 nicht verabreicht. COPD Stadium D nach GOLD mit Emphysem Risikogruppe B nach GOLD mit \rrespiratorischer Globalinsuffizi Virale infektexazerbierte COPD GOLD D Exazerbierte COPD mit erforderlicher intermittierender BiPAP-Beatmung...
COPD GOLD 2
2020-09-23T10:29:03.000Z
^((^$)|([^<>{}| `^\"'\\\\%]+))$
erer ze ez ze `rer `
t1
2017-05-30T11:02:36.000Z
smth
(?<=; )(.*)(?=@)
Mine
2021-07-13T20:05:51.000Z
namespace ((.*)\\Tests((.*)?;))(\s+(.*\n)*\s+\* @testdox )(.*)(\s+\*\/\nfinal class )(\w+)Test
namespace Croct\Tzdb\Compiler\Tests; use Croct\Tzdb\Compiler\TzdbCompilationException; use PHPUnit\Framework\TestCase; /** * @testdox An exception that indicates failure during the compilation process */ final class TzdbCompilationExceptionTest extends TestCase
Covers
2019-02-15T18:20:41.000Z
^(?<classname>[\w\.]+)?(?:#(?<member>\w+))?(?:\((?<params>.*)\))?(?:\s(?<label>\w+(?:\s\w+)*))?$
Moo#withRecipientsWithDefaultName(String, Collection, RecipientType) label #withRecipientsWithDefaultName(String, Collection, RecipientType) label #withRecipientsWithDefaultName(String, Collection, RecipientType) #withRecipientsWithDefaultName Moo#withRecipientsWithDefaultName label #withRecipientsWithDefaultName label...
Therapi Link regex
2018-10-14T20:35:54.000Z
const regex = /(?:Mobile|Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera\sMobi)/gm; const str = `Mozilla/5.0 (Android; Mobile; rv:13.0) Gecko/13.0 Firefox/13.0 Mozilla/5.0 (Linux; U; Android 4.0.3; de-ch; HTC Sensation Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 Mozi...
(?:Mobile|Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera\sMobi)
Mozilla/5.0 (Android; Mobile; rv:13.0) Gecko/13.0 Firefox/13.0 Mozilla/5.0 (Linux; U; Android 4.0.3; de-ch; HTC Sensation Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 Mozilla/5.0 (Linux; Android 4.4.2); Nexus 5 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1...
POC Mobile Detection
2021-01-08T01:27:09.000Z
This REGEX can be used for, e.g., PHP scripts to filter out comments that are only important for development.
<!--sec:\s*([\s\S]*?)\s*#-->
<!-- Normal Comment --> <!--sec: Secret Comment #--> <!-- Normal Comment 2 -->
Secret HTML Comment
2022-12-19T17:08:20.000Z
Regex simples para verificação de email
^[a-z][\w]+@[a-z]+.com$
rcedsRsa@gmail.com rcedsEas1a@gmail.com a11111111@gmail.com asdasd123@asdas.com.br
Email
2021-09-27T18:25:20.000Z
nothing
<a href="(.*)"> <img class="lazyload" data-sizes="auto" data-srcset=".*?" src=".*?" data-src=".*?" alt="(.*?) izle" loading="lazy" \/> <div class="poster-cover">
<!DOCTYPE html> <html lang="tr"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Language" content="TR"> <meta name="dis...
hdfilmcehennemi ana filmler
2021-07-10T06:15:43.000Z
Match any url in text or html (http, https)
(?:http[s]?:\/\/.)?(?:www\.)?[-a-zA-Z0-9@%._\+~#=]{2,256}\.[a-z]{2,6}\b(?:[-a-zA-Z0-9@:%_\+.~#?&\/\/=]*)
https://regex101.com/ ftp://daqdsqdq azd ade zef ezfhttps://toto.dsdaz?page=1#sldlsdlsd&sqdqsd#sqdqsdsdza"ad azd azd
Match any url in text or html (http, https)
2022-02-02T15:04:10.000Z
- A password must consist of at least fifteen characters. - A password must contain a character from at least three of the following four sets: - A-Z - a-z - 0-9 - !@#$%^&*_-+=?|\/(){}[]:<>,.; - No whitespaces
((?=.*\d)(?=.*[a-z])(?=.*[A-Z])|(?=.*\d)(?=.*[a-zA-Z])(?=.*[!@#$%\^&\*\_\-+=\?|\/\(\)\\{}\[\]:<>,\.;])|(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\^&\*\_\-+=\?|\/\(\)\\{}\[\]:<>,\.;]))(?=\S+$).{15,}
Welkowelkomwelkom!
Password policy (password requires three out of the four character types)
2022-04-26T08:45:38.000Z
(?:semlps/401k-retirement-services|semlps/aca|semlps/avs|semlps/flsa|semlps/guides|semlps/inshb|semlps/insurance|semlps/is-national|semlps/sbsdemandgen|semlps/simple-ira|semlps/talent-management|semlps/workers-comp|semlps/2019/sbs-a|semlps/2019/hro|semlps/2019/sbs-x)(?:/)?(?:.*[^0-9a-zA-Z].*)?(?:\\.aspx)?$
ERROR: type should be string, got "\thttps://adp-iat.adp.com/semlps/2019/sbs-b-rb.aspx"
sem
2020-06-25T17:07:42.000Z
\S+\[v=\"(customDate)-(\w+)\",g=\"(\w+)\",p=\"(\S+)\"\]\S+\/(returns_period|mpt_statistics_period\/\w+)\/(\w+)\/(\w+)
root/1-825-ReturnAndStatsCompositeAPI[v="customDate-return",g="customDate",p="{"asOfDate":"2016-12-31","startDate":"2016-05-31"}"]/data/share_classes/array[1]/returns_period/net/cumulative root/2-825-ReturnAndStatsCompositeAPI[v="customDate-return",g="customDate",p="{"column":"column2","asOfDate":"2016-05-31","startD...
Custom Date
2017-09-29T02:34:59.000Z
(?m)^.*?Exception.*(?:\R+^\s*at .*)+
Save New Duplicate & Edit Just Text Twitter ---- Minecraft Crash Report ---- WARNING: coremods are present: TransformerLoader (OpenComputers-MC1.12.2-1.7.5.192.jar) FMLModule (mdxlib-3.0.0.26 (1).jar) MovingWorldCore (movingworld-1.12-6.353-full.jar) MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.2.280.jar) Xaer...
StackTrace
2020-11-18T11:15:54.000Z
My own regex for telephone number for my task
(\n|\s)(?:(?:\+?(\d{1}|\d{2}|\d{3})\s*)\s*(?:\(\s*(\d{1}|\d{2}|\d{3})\s*\)|(\d{1,3}))\s*\-?(?:\(\s*(\d{1,3})\s*\)|(\d{3}))\s*\-?(?:\d{2}\s*\-?\d{2}))
+79996364778 rus 8 (918) 373-6633 rus +1 650-798-2800 usa 8(949)373-66-55 rus +7 (961) 859-56-19 rus +1 205-635-1136 usa +22(909)333 4334 +7(985)5310868 +79855310868 88008454545 +55 11 99999-5555 Brazil +593 7 282-3889 Ecuador (+44) 0848 9123 456 UK +1 284 852 5500 BVI +1 345 9490088 Grand Cayman +32 2 702-92...
phone
2018-12-27T14:17:02.000Z
<(.*)(?:\s[^>]*?)?>(?:{{)([^<]*?)<\/\1>([^<]*?<[\s\S]*?>[^>]*?)<(.*)(?:\s[^>]*?)?>([^<]*)(?:}})<\/\4>
<p style="margin-top:0pt; margin-bottom:0pt; font-size:15pt"><span style="font-family:宋体">乙方经办人</span><span style="font-family:宋体; color:#e36c0a"> </span><span style="font-family:宋体; font-weight:bold; text-decoration:underline; color:#e36c0a; -aw-import:spaces">&#xa0; </span><span style="font-family:Calibri; font-weigh...
Match the {{arg}} symbol in HTML string
2020-11-19T06:09:43.000Z
Extracts a table/model name, and optionally a column name. Enforces well-formed parameters. Tested with `/category/{aYes:bYes}/{cYes}/{dNo:}/{eNo:/{:fNo}`
{([^:{}]+)(:([^{}]+))?}
/category/{aYes:bYes}/{cYes}/{dNo:}/{eNo:/{:fNo}
identify and extract Laravel-style route parameters
2023-06-22T22:40:57.000Z
(Â|â|Ã|\||©|®|™)
Calcaneal Locking Plate â Aspen Richard-Allan® Surgical Needle, Keith’s Abdominal Cutting, Straight 0.03 in x 2.244 in Laborie T-DOC® Single Sensor Coudé Catheter, Coude Tip 7 Fr Hydrocellular Foam Dressings SILICONE ADHESIVE | WITH BORDER | Sacral | GENTLE ADHESIVE | STERILE 7" x 7" Dressing 5" x 5" Pad 0061247...
Prizm/GUDID to CKMS Character Removal
2020-09-03T19:12:32.000Z
This regex will validate pretty much every mail that could exist. It allows aliases and tags in the mail, therefore the mail can contain one or more dots and/or "+" signs (Exemple: exemple.test.alias+tag+tag2). It also allows Internationalized Domain Names (IDNs) (Exemple: @café.com), subdomains (Exemple: domain.subdom...
^(\w+[._%+-]*)+@(([a-zA-Z0-9À-ÿ-]+-?)+\.)+[a-zA-Z]{2,}$
Exemple@mail.com exemple@mail.fr exEmPle.exemple@mail.to exemple.exemple.exemple@mail.org EXEMPLE.exemple.EXEmple@mail.de exemple+test@Màil.com _exemple@Mail.com _exemple.test@Mail-test.com _exemple+test@mail-test-café.co.uk exe_mple.test+tag@mail.com exe_mple.test@mail.subdomain.com exe_mple+test@mail.com exemple@good...
Emails regex
2023-06-20T02:25:04.000Z
umb:\/\/(media|document)\/(.*)$
umb://media/a0ea20b81eee4a4199e3c22464f8cf41
Umbraco udi regex
2017-11-09T11:56:59.000Z
validation email
^\w+@([a-z0-9_.+-]+)\.([a-z0-9_.+-]+)
Email
2022-10-13T04:30:56.000Z
中国专利申请号/专利号
(?<!\d)(?:\d{12}|\d{8})\.?(?:[0-9xX])(?!\d)
申请号 002623110 022879803 2004100184779 2004100666004 2005101110245 2006300002925 2006200007177 2007100385983 2008101335952 2008101613271 2011100997897 2008201400425 2009101423229 2009101423233 2009101423248 2009101439477 2009101572384 2009101572399 2009101576224 2009302031381 2009101610776 2009201695623 2011200054060 20...
ChinaPatentNumber
2019-08-01T13:14:11.000Z
^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$
Base 64
2018-03-28T02:27:32.000Z
[0-9]{4}
Datentr„ger in Laufwerk H: ist Volume Volumeseriennummer: 7077-E7B9 Verzeichnis von H:\FH\180821\adidas 19 20 teamwear\all 21.08.2018 22:59 <DIR> . 21.08.2018 22:59 <DIR> .. 04.07.2018 22:54 22.163 3136.jpg 04.07.2018 22:54 17.977 3137.jpg 04.07.2018 22:54 ...
number
2018-08-21T21:00:47.000Z
Parses a very basic SQL INSERT statement of the form: INSERT [INTO] <table_name> (<fields>) VALUES (<values>)
^\s*insert(?:\s+into)?\s+(?<TableName>\[.*?\]|[^ (]+)\s*\((?<Columns>.+?)\)
insert into [SomeTable]([Run ID]) values (something, something) insert [SomeTable]([Run ID]) values (something, something) insert into [SomeTable]([Run ID]) values (something, something) insert into SomeTable([Run ID]) values (something, something) insert SomeTable([Run ID]) values (something, something) insert ...
INSERT statement
2017-12-13T11:27:44.000Z
\d+$
2017Regex2017
$ = Fim da string;
2017-04-10T23:35:45.000Z
Regex able to parse iCal to fetch, for example, the schedule of students.
(BEGIN:VEVENT.*DTSTAMP:(\d{8}T\d{6}Z).*DTSTART:(\d{8}T\d{6}Z).*DTEND:(\d{8}T\d{6}Z).*SUMMARY:(.*)LOCATION:(.*)DESCRIPTION:(.*)UID:(.*)CREATED:(\d{8}T\d{6}Z).*LAST-MODIFIED:(\d{8}T\d{6}Z).*SEQUENCE:(\d{10}).*END:VEVENT)
BEGIN:VCALENDAR METHOD:REQUEST PRODID:-//ADE/version 6.0 VERSION:2.0 CALSCALE:GREGORIAN BEGIN:VEVENT DTSTAMP:20191129T152730Z DTSTART:20191212T091500Z DTEND:20191212T104500Z SUMMARY:INTERMODALITE: BESOINS DE TRANSPORT ET INTERMODALITE LOCATION:S413 (A70) DESCRIPTION:\n\n3SQY-FERRO\nLIU Kaisheng\n(Exporté le:29/11/2019 ...
iCal parser
2019-11-29T18:47:17.000Z
This is pre-built Global Pat for FortiSiem
(?'gPatSyslogPRI'<\d+>) (?'gPatMesgBody'.*) (?'gPatMesgBodyMin'.*?) (?'gPatSyslogNGHeader'\w{3}\s+\d{1,2}\s\d{1,2}:\d{1,2}:\d{1,2}\s\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) (?'gPatMon'Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|\d{1,2}) (?'gPatMonNum'\d{1,2}) (?'gPatDay'\d{1,2}) (?'gPatTime'\d{1,2}:\d{1,2}:\d{1,2}) (?'g...
gPat
2022-02-26T01:01:18.000Z
(\b(?<![[:punct:]])abc&apos;n(?![[:punct:]])\b)
123abc assass abc abc-abc. abc-123. 123-abc. abc123 abc. abc&apos;n com 123 abc 123 abc.123 www.abc. abc.com www.abc www.abc.com abc-foo what.com abc is the place to abc. <-- That last abc should be highlighted. what.com abc is the place to abc. That last abc should be highlighted. www.abc. Foo bar look looking te...
highlighting with punctuation
2019-10-03T06:21:39.000Z
^[a-z_][a-z0-9_-]{0,30}[a-z0-9_$-]?:[^:]*:\d+:\d+:[^:]*:[^:]*:[^:]*$
root:x:0:0:root:/root:/bin/bash daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin bin:x:2:2:bin:/bin:/usr/sbin/nologin sys:x:3:3:sys:/dev:/usr/sbin/nologin sync:x:4:65534:sync:/bin:/bin/sync games:x:5:60:games:/usr/games:/usr/sbin/nologin man:x:6:12:man:/var/cache/man:/usr/sbin/nologin lp:x:7:7:lp:/var/spool/lpd:/usr/sbi...
/etc/passwd for most Linux distributions (e.g. Debian)
2017-01-27T15:40:38.000Z
[\#(/)_\-\=\!\:]
#/usr/bin/python3 from bisect import bisect_right def binary_search(vector,x): i = bisect_right(vector,x) if i != len(vector)+1 and vector[i-1] == x: return i-1 return -1 def is_prime(vector,number): return 1 if binary_search(vector,number) != -1 else 0 def prime_vector(num): ret = [] for a in range(2,num...
Python Regex for symbols
2020-10-06T16:11:02.000Z
(?:\s|^|\(|\[)(#[0-9]+)(?:\s|$|\)|\]|\.|\,(?:\s|$))
#1, #2, #3 #1 #2 #3 #4 (#1)(#2)(#3) "#1234" #1234test testme#3
issue lookbehind
2019-04-21T21:11:13.000Z
\[(\s*[a-z]+\s+([a-z]+\s*)*)*,(\s*[a-z]+\s+([a-z]+\s*)*)*\]
asa [ is his hair , grey or gray ] dsfs df
Table list [ A, B ]
2019-06-11T02:38:34.000Z
(\W)(xtext)
.art text xtext gg .fo xtext = U|xtext dfgtx 'xtext' gghzu 'U|xtext'
test
2017-08-23T23:10:46.000Z
Pruebas iniciales
(?P<primero>c[oó]d\S*).*(?P<segundo>cli\S*)
codigo de cliente códigos de clientes cód de cli codido decliente
Prueba 1
2021-01-13T00:03:31.000Z
([\d.-]+),(\d[\d.]+|(?:.)[-\d.]+)
Latitude/Longitude #Н/Д 33.651272, -117.990384 49.996387, 8.281494 46.214978, -74.584957 32.681523, -117.177851 33.56666, -111.918578 15.30686, 73.911334 #Н/Д 19.762559, -70.641425 38.427717, 27.135626 1.306349, 103.833247 45.507321, -73.565433 42.349027, -71.076333 29.461875, -98.681267 37.933797, -107.851831 18.79726...
Latitude/Longitude to 2 data
2018-05-24T11:55:02.000Z
^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[1,3-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{...
11.01.2010 11.12.12 01-12-12 01/12/2012 11/12/12 01.12.2010 01.04.1993 03.06.93 01 08 1991 29.02.200 9562 6232 5695 2659 864797 3354713559 +380 44 555 12 34 555 12 34 0 44 555 12 34
дата
2019-04-16T11:08:20.000Z
https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes
(?<country>.*?)\s(?<a2>\w\w)\s(?<a3>\w\w\w)\s\d+\sISO\s3166-2:(?<iso>\w\w)\t(Yes|No)
Afghanistan AF AFG 004 ISO 3166-2:AF Yes Åland Islands AX ALA 248 ISO 3166-2:AX No Albania AL ALB 008 ISO 3166-2:AL Yes Algeria DZ DZA 012 ISO 3166-2:DZ Yes American Samoa AS ASM 016 ISO 3166-2:AS No Andorra AD AND 020 ISO 3166-2:AD Yes Angola AO AGO 024 ISO 3166-2:AO Yes Anguilla AI AIA 660 ISO 3166-2:AI No Antarctica...
Wiki Country Codes ISO 3166-1
2018-01-27T12:26:42.000Z
在清除字符串里的非字母数字字符且需要留下&用于拆分时可用
[^&\w]|_
ss123.2=9&&23=s\\/s'".,;;:][}{+-—__=*&&^^%$#
匹配非字母数字且排除对&的匹配
2021-02-19T07:03:09.000Z
Select string between double quotes.
"([^"]+)"
asds"sdad"dasdasd"sdasd"adasdasd"asdasdd"
Bwt Double Quotes
2023-07-16T10:15:16.000Z
[a-z0-9\.]+
1123.456.abc.def
Matching Anything But a Newline
2020-04-18T21:11:04.000Z
^\w+
first second third
flag 'm'
2018-05-03T17:13:31.000Z
^\w++\W++((?<=\")[\w-]+(?="))\W+((?<=\")[\w-]+(?="))[\S\s]+?(count\W+=.*)[\S\s]+?^}$
resource "aws_iam_role" "my_test_payer_specific_role" { count = "${(var.payer_account == "380834257621")?1:0}" name = "my_test_payer_specific_role" max_session_duration = "7200" assume_role_policy = "${data.aws_iam_policy_document.my_test_payer_specific_role-policy.json}" tags = "${var.resources_tags}" lif...
terraform constructs with count
2020-06-23T17:25:24.000Z
\`(?:.|\`)*\`
this is `a string {eval this} with {and that} inside` asd
My regex
2017-02-10T23:11:10.000Z
regex for share shopee video from mobile app
ERROR: type should be string, got "https:\\/\\/id\\.shp\\.ee\\/?([\\w.'_-]+)"
https://shp.ee/auu7tfs.sa
shopee video
2023-05-06T02:43:53.000Z
Support any types of URL for https and http protocol. - http or https [optional] - domain name [mandatory] - file path [optional] - query parameter [optional]
^(((ht|f)(tp)(s)?(:\/\/))?(([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))(:\d{1,5})?((\/)([\w\.~%-]+))*(\/)?((\?)(([\w]+)(=[\w\.~%-]+)?((&)([\w]+)(=[\w\.~%-]+)?)*)?)?((#)((([\w]+(=[\w\,\*\.~%-]+)?)(&[\w]+(=[\w\,\*\.~%-]+)?)*)|(:~:text=([\w\.~%-]+\,)?([\w\.~%-]+)(\,[\w\.~%-]+){0,2}))...
//Base case 17hieng.com 17hieng.com.my www.17hieng.com.my www.edu.17hieng.com.my 192.168.1.1 //With protocol http://17hieng.com https://192.168.1.1 //With Port http://17hieng.com:8080 https://192.168.1.1:443 //With Path www.edu.17hieng.com.my/edu 192.168.1.1/edu/ http://17hieng.com/edu/edu https://192.168.1.1/ //W...
URL
2023-12-01T03:57:07.000Z
https://wiki.freeradius.org/config/Users#special-attributes-used-in-the-users-file
^(((Any|Al|Mo|Mo|Tu|We|Th|Fr|Sa|Su|Wk)-?)+(([01]?[0-9]|2[0-3]){2}([0-5][0-9])-([01]?[0-9]|2[0-3]){2}([0-5][0-9]))?,?)+
Wk2305-0855,Sa,Su2305-1655 Any Al0200-2300
FreeRadius Login-Time match
2018-06-07T15:23:55.000Z
Testing Authelia subdomain / path rules. You can read more at the [Authelia Docs](https://www.authelia.com/configuration/security/access-control/) By default, this regex101 page is shown a test for a generic API path ````yaml - domain: "some-sub.drpranavmishra.com" resources: - "^/api([/?].*)?$" # A...
[\w]{16}.[\w]{44}$
### Do not type in the full URL (e.g. "sub.example.com/blahblah") ### Use the path only, starting with the first slash ### - Pranav Mishra # Generic API ## Regex: ^/api([/?].*)?$ /api?some_random_api_code_here # Health Check ## Regex: ^/healthz.*$ /healthz/1 # PrivateBin test ## Regex: [\w]{16}#[\w]{44}$ /?6264cc7c2...
Authelia regex path rules
2023-05-06T19:29:50.000Z
DL_CaseState[^a-zA-Z0-9_]*[\w]+[^a-zA-Z0-9_]*(?!(and|or))
set = 1 and DL_Casestate='0'
Dynamic Search Extra param
2018-07-16T11:17:42.000Z
captura los diferentes tipos de URLs de protocolo HTTP
\b(https?://)?(([0-9a-zA-Z_!~*'().&=+$%-]+:)?[0-9a-zA-Z_!~*'().&=+$%-]+\@)?(([0-9]{1,3}\.){3}[0-9]{1,3}|([0-9a-zA-Z_!~*'()-]+\.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z]\.[a-zA-Z]{2,6})(:[0-9]{1,4})?((/[0-9a-zA-Z_!~*'().;?:\@&=+$,%#-]+)*/?)
https://www.google.com/search?client=ubuntu&channel=fs&q=k2+avoid+url+in+comment&ie=utf-8&oe=utf-8 https://sergayenelperu.com:2083/ 208.91.198.170 http://fer:burrito@casa.com
Captura de URLs
2020-11-19T16:17:50.000Z
Tries to match RFC 5322 as well as possible
^((?:[A-Za-z0-9!#$%&'*+\-\/=?^_`{|}~]|(?<=^|\.)"|"(?=$|\.|@)|(?<=".*)[ .](?=.*")|(?<!\.)\.){1,64})(@)((?:[A-Za-z0-9.\-])*(?:[A-Za-z0-9])\.(?:[A-Za-z0-9]){2,})$
Valid email addresses simple@example.com very.common@example.com disposable.style.email.with+symbol@example.com other.email-with-hyphen@example.com fully-qualified-domain@example.com user.name+tag+sorting@example.com (may go to user.name@example.com inbox depending on mail server) x@example.com (one-letter local...
email validation (RFC 5322)
2019-05-20T07:25:28.000Z
^((CAPR?I?\s?SUN\b)|(CAPRI\b)|(C\W?S\b)|(JUICES?\b)|(STRAWBERRY\b))
C/S ARIETY PACK 40CT CS C/S CAPRI SN SPR V FRTPNCH 10PK CAPRI SN SPR V JCE APPLE 10PK CAPRI SN SPR V JCE BERRY 10PK CAPRI STRAWNANA MINIONS CAPRI CAPRI SUN100% JUICE APPLE SPL CAPRI SUN 100% JUICE BERRY BRE CAPRI SUN 100% JUICE FRUIT DIV CAPRI SUN 100% JUICE GRAPE TID CAPRI SUN 40CT 100% JUICE VAR CAPRI SUN 40CT ROARI...
Juices: Capri Sun
2018-03-30T16:38:51.000Z
Curso de Expresiones Regulares: Cuantificadores y Repetición
.+
Lorem ipsúm dolor sit amet, sóleat coñsetetur et nam, vocibus convenire an vis. ¿Nostrum mediócritatem hís cu? Lobortis vítuperata has ñe. ¡Vis ex mágna summo coñsequat, mándamus mediocrem repudiare ut méa, ne eám sempér melius! ¿Ullúm debitis ut duo? Cu vídit sigñiferúmque vel, quo ex simul facilís, mea ridens maiorum...
Cuantificadores y Repetición
2018-08-23T02:48:01.000Z
Matching the lines that are attributes
(?:(\[.+\]*))
[Description("Editor Text Value"), Category("Data")]
IsAttribute
2017-08-22T10:08:48.000Z
(?<=\/)[^\/]*(?=\.)
src/profile/Admin.profile src/profile/Chatter External User.profile src/profile/Chatter Free User.profile src/profile/Chatter Moderator User.profile src/profile/Company Communities User.profile src/profile/ContractManager.profile src/profile/Guest License User.profile src/profile/High Volume Customer Portal User.profil...
Match filenames New
2018-04-06T13:57:18.000Z
float: right;\">(.+?)<\/h.+\n.+?\"true\"><\/i> (.+?) (.+?)<\/a.+\n.+?\"true\"><\/i. (.+?) (.+?)<\/a
MLB Fixtures
2020-08-08T10:28:43.000Z
((\d+|Fir|Seco|Thi|Four|Fif)(st|nd|rd|th)\s+)?(S(ui)?te|Bldg|Frnt|Fl(oo)?r?|Unit|P\.?O\.? Box|R(oo)?m)(\s|$).*
7330 Shadeland Station Ste 200 401 6th Ave PO Box 270 401 6th Ave PO Box 270 12440 Seaway Rd Ste 102 929 Gessner Rd Ste 2700 N17W24100 Riverwood Dr Ste Ll10
Address2
2018-11-05T21:43:37.000Z
\b(?:smiley(creations15)?|Smiley)\b
smileycreations15 - ok smiley - ok Smiley - ok Smileycreations15 - not ok because first letter is capital
my username
2019-06-13T16:01:23.000Z
^120/BHP\d/(?P<lblreq_board>LBLREQ)-(?P<lblreq_id>\d+)/(?P<mission>\d{4}-\d{2}-\d{2}-Z0F\d{4})/(?P<run>\d+)/(?P<vehicle_time>\d{18})/(?P<event_time_s>\d+\.\d+)/(?:sweep_dir_\d+/sweep_\d+/)?image_(?P<channel>[a-z_]+)_000000000\.png$
120/BHP4/LBLREQ-92/2018-06-13-Z0F0034/2/347742483826079513/315970791.448747000/sweep_dir_0/sweep_0/image_raw_ring_front_center_000000000.png 120/BHP4/LBLREQ-99/2018-07-05-Z0F0026/2/305006254539769513/315967941.329407000/sweep_dir_0/sweep_0/image_raw_stereo_front_left_000000000.png
Samasource url path - PML extraction
2018-08-06T19:54:57.000Z
密码的强度必须是包含大小写字母和数字的组合,不能使用特殊字符,长度在8-10之间。
^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$
qweq123QWE
校验密码强度
2017-06-22T04:05:07.000Z
(patios?|jard[ií]ne?s?|zonas? verdes?)
VENTA de 3 AMBIENTES AL FRENTE 1 “A” , APTO PROFESIONAL, de 60 m2 cubiertos y 13 m2 semicubiertos de balcón aterrazado.Baño completo y toilette."CULLEN 5824" EDIFICIO CON ENTREGA INMEDIATA. LISTO PARA ESCRITURAR."ESPECIFICACIONES DE UNIDADES DE 3 AMBIENTES :Piso de porcelanato en linving y palier de distribución.Piso p...
Patio
2020-10-12T23:49:30.000Z
> 验证阿拉伯数字金额 "-999999999 ~ 999999999" ,小数点后面保留2位
^-?\d{0,9}(\.\d{1,2})?$
0 1 12.34 123456789.12 1234567890.12 -12.23 12345678912 999999999.99 999999999.10 -999999999.10 -999999999.100
验证金额 "-999999999.99 ~ 999999999.99" ,小数点保留2位
2021-02-10T06:17:58.000Z
(?xm) \b #boundary - begining of text \w[^\d]+? #words without number(s) and ungreedy (?) \b #boundary - end of text
abc 123 123anb abc123 ba3 my age is 15 current year is 1980 $#%&#@#$%@!$$
Policy numbers
2019-10-03T11:58:30.000Z
(youtube|you_other_url_format).*?(?:[\/]|v=)([a-zA-Z0-9-_]{11})
http://www.youtube.com/watch?v=jhjhkum-kq8&feature=related https://www.youtube.com/watch?list=RDfRh_vgS2dFE&v=fRh_vgS2dFE https://www.youtube.com/watch?v=fRh_vgS2dFE&list=RDfRh_vgS2dFE https://www.youtube.com/embed/NMKkz9uRXJc
get video ID from youtube url
2018-12-03T11:40:33.000Z
^((?:19|20)(?:(?:(?:[02468][048]|[13579][26])\/02\/(?:0[1-9]|[12]\d))|(?:(?![02468][048]|[13579][26])\d){2}\/02\/(?:0[1-9]|[1]\d|2[0-8])|\d{2}\/(?:(?:0[469]|11)\/(?:0[1-9]|[12]\d|30)|(?:0[13578]|10|12)\/(?:0[1-9]|[12]\d|30|31))))$
Fechas Validas
2018-05-16T21:51:32.000Z
git-stuff commit message header pattern.
^\[(?P<type>.+)\]\:\ (?P<subject>(.+)\.)(?=[\r\n|\r|\n]*Description)
[FIX]: Fix bad wiring on plane 334, 335, and 336. Remove decorator for 478. Description: 1. sadsadad. 2. kjadhkahsdkahdjakdskashdkasjdsahdkhadhkasdhjkhaskd. 3. djasdasdasdadkajdsjaskldjalkdjalsjdlajsdlkjasdlas, asdjasdaskdaskdhaslkjdlasjdkasd. Reference: #232 ^\[(?P<type>.+)\]\:\ (?P<subject>(.|\r\n|\r|\n)+\.$)(?=[\...
Commit Message - Header Pattern (Optimized)
2018-07-02T10:13:25.000Z
( # start capture url (?:(?:(?:ht|f)tps?\:)\/\/?|(?:www\.)) # start with http or www (?:\s?[:\w?=%&+-]+ # need some chars in url, allow spaces. (?:(?:(?:\.)|(?:\/(?:\/)?)))? # can have ., / or // inside urls. )+ # allow repeat alternating pattern of chars and delimiters ) # end capture url
http://www.apple.com/legal/ privacy/. abbbbbbbbbbbb abababab aaab hi h123213i.what let's do some URLs next segment> https://duckduckgo.com/?q=perl+regex+%2Fmxsp&t=canonical&atb=v143-1&ia=web, http://www.rexegg.com/regex-modifiers.html <segment hi there segment> https://duckduckgo.com/?q=tutorial+perl+regex+substit...
tag urls
2019-07-28T16:54:30.000Z