description
stringlengths 0
8.24k
| regex
stringlengths 1
26.3k
| text
stringlengths 0
2.47M
⌀ | title
stringlengths 1
150
| created_at
stringlengths 24
24
|
---|---|---|---|---|
walter1976LastClean | \d+$ | 9 Patterson, R.J.. 1972.Hydrology and Carbonate Diagenesis of a CoastalSabkha in the Persian Gulf. Thesis, Princeton University, Princeton, R.I.. 473pp.
139 | walter1976LastClean | 2023-05-02T03:52:42.000Z |
This matches morse code input and leaves word break spaces | \s?[.-]+\s? | ...---... -.-.-- - .... . --.- ..- .. -.-. -.- -... .-. --- .-- -. ..-. --- -..- .--- ..- -- .--. ... --- ...- . .-. - .... . .-.. .- --.. -.-- -.. --- --. .-.-.- | Match morse code | 2023-11-06T04:53:22.000Z |
(.*)\/\/(.*) | (.*)\/\/(.*) | id: string;
avatar: string;
name: string; // 名称
brief: string; // 简介
type: string; // ip 形象类型 image:图片类型|figure2d:2d数字人
dubbingId: string; // 默认配音
percent: string; // 比例
previewUseVideo: {
// 预览使用视频
url: string; // 地址
};
coverUrl: string; // 封面url
videoUrl: string;
duration: number; // 时长(s) | API 文档注释的转换 | 2023-08-08T06:10:42.000Z |
Get all table from sql query string | 从SQL查询语句中获取所有表名。
WelineFramework PHP8 。 | (SELECT|DELETE)(?:\s*\/\*.*\*\/\s*?)*\s+FROM*\s+([^\s\/*;]+)?|(?:(?:(CREATE|ALTER|DROP)(?:(?:\s*\/\*.*\*\/\s*?)*\s+OR(?:\s*\/\*.*\*\/\s*?)*\s+(REPLACE))?)(?:\s*\/\*.*\*\/\s*?)*\s+TABLE(?:(?:\s*\/\*.*\*\/\s*?)*\s+IF(?:\s*\/\*.*\*\/\s*?)*\s+EXISTS)?|(UPDATE)|(ALTER)|(INSERT)(?:\s*\/\*.*\*\/\s*?)*\s+(?:INTO?))(?:\s*\/\*.*\*\/\s*?)*\s+([^\s\/*;]+)|(?:(REPLACE)(?:\s*\/\*.*\*\/\s*?)*\s+(?:INTO?))(?:\s*\/\*.*\*\/\s*?)*\s+([^\s\/*;]+)(?:\s*\/\*.*\*\/\s*?)*\s+([^\s\/*;]+) | DROP TABLE IF EXISTS tbl1; CREATE TABLE tbl1 ...
CREATE TABLE tbl1 ...
CREATE OR REPLACE TABLE tbl1 ...
INSERT /*some comment*/ INTO tbl2 ...
INSERT /*some comment*/ INTO tbl2 ...
UPDATE tbl3 SET col1 = ...
/*some garbage comments*/ UPDATE tbl3 SET col1 = ...
DELETE from tbl4 ...
select from select_table insert into table_ttt
alter table alter_table
#1 some optional statements like CREATE /*some comments*/ TABLE table_name everything else
#1 some optional statements like CREATE /*some comments*/ OR REPLACE TABLE table_name everything else
#2 some optional statements like INSERT /*some comments*/ INTO /*some comments*/ table_name
#3 some optional statements like UPDATE /*some comments*/ table_name everything else | Get all table from sql query string | 从SQL查询语句中获取所有表名 | 2023-10-26T03:08:52.000Z |
Format: x0.00
Valid:
13.37
4.20
1.00
Invalid:
13,37
4,20
1,00
1
7.5 | ^\d+\.\d{2}$ | Currency Amount | 2014-11-25T10:42:46.000Z |
|
For example:
/foldera/folderb/filename.txt
Result: foldera | ([.\w]+) | /foldera/folderb/filename.txt?lkjh=sdrgh | Selects fist directory path | 2016-09-23T07:27:34.000Z |
This regex will work with Keil C ARM MDK if you prefer using Eclipse | (.*\..).(.\d++)\):(\s+error.*) | ..\main.c(81): error: #20: identifier "s" is undefined | Keil C ARM MDK Error Parser | 2015-10-31T17:50:12.000Z |
I've been using this regex to get a list of expanded functions/subs (specifically the names of them from the 'func' capture group) from VB code that is used as input in a code converter for a project at work. | (?:Public|Private|Friend) (?:Shared )?(?:Overloads |Overrides )?(?:Sub|Function) (?<func>.*?)\(.+?\)(?: Implements )?.*?End (?:Sub|Function) | Imports System.Windows.Forms
Imports System.Drawing
Imports CapReportLib
Imports ReportControls.Database
Imports System.Threading
Imports System.ComponentModel
Public Class Report : Implements IReport
#Region "Fields"
Friend MyReportRunTime As TimeSpan
Friend MyLastException As New Exception("No Errors")
Friend RepParams As New ReportParameters()
Friend Shared DBA As ReportControls.Database.DataAccess
Private lastResult As New ReportResult(False, New TimeSpan, String.Empty)
Private Shared delRunReport As IReport.Execute = Nothing
Private repSync As ISynchronizeInvoke
Private repThread As Thread
Private repHandler As IReport.ReportHandler
Private repParamsSync As ISynchronizeInvoke
Private threadIsRunning As Boolean = False
Private Delegate Sub EnableCsvHandler(ByVal enable As Boolean, ByVal value As String)
Private enableCsv As EnableCsvHandler
Private csvData As String = String.Empty
Private startDate As Date = Now
Private endDate As Date = Now
Private origin As ReportControls.Types.OriginItem
#End Region
#Region "Threading"
Private Sub RunReportThread()
threadIsRunning = True
Dim rs = ExecuteReport()
If repThread.ThreadState <> ThreadState.AbortRequested Then
repSync.Invoke(repHandler, New Object() {rs})
repParamsSync.Invoke(enableCsv, New Object() {True, csvData})
End If
threadIsRunning = False
End Sub
Public Sub ExecuteReportThread() Implements IReport.ExecuteReportThread
repParamsSync = RepParams
enableCsv = AddressOf RepParams.EnableCsvExport
repThread = New Thread(AddressOf RunReportThread)
repThread.Start()
End Sub
Public Sub SetReportHandler(ByVal rh As IReport.ReportHandler) Implements IReport.SetReportHandler
repHandler = rh
End Sub
Public Sub StopReport() Implements IReport.StopReport
If repThread Is Nothing Then Return
If repThread.IsAlive Then
repThread.Abort()
End If
End Sub
Public Sub SetSyncInvoke(ByVal syn As ISynchronizeInvoke) Implements IReport.SetSyncInvoke
repSync = syn
End Sub
Public Sub SetReportHandler(ByVal rh As IReport.ReportHandler, ByVal syn As ISynchronizeInvoke) _
Implements IReport.SetReportHandler
repSync = syn
repHandler = rh
End Sub
#End Region
#Region "Initialize"
Public Sub SetOutPut(ByVal pnlControls As Panel) Implements IReport.SetOutPut
RepParams.Parent = pnlControls
RepParams.Dock = DockStyle.Fill
RepParams.Show()
End Sub
Public Sub SetReportDataAccess(ByVal connectionString As String) Implements CapReportLib.IReport.SetReportConnectionString
SetDataAccess(New ReportControls.Database.DataAccess(connectionString))
End Sub
Public Sub SetDataAccess(ByVal db As DataAccess)
DBA = db
SetOrigins()
End Sub
Private Sub SetOrigins()
RepParams.OriginSelector.SetConnectionString(DBA.ConnectionString)
End Sub
Public Sub SetReportExecute(ByVal exc As IReport.Execute) Implements IReport.SetReportExecute
delRunReport = exc
End Sub
Public Sub Dispose() Implements IReport.Dispose
DBA.Dispose()
RepParams.Dispose()
End Sub
#End Region
#Region "Run Report"
Public Function ExecuteReport() As ReportResult Implements IReport.ExecuteReport
RepParams.CsvButton1.EnableCsvExport(False, String.Empty)
Dim success As Boolean = True
Dim startRun = Now
Dim repData As String = String.Empty
Try
If HasValidParametersSelected Then
Dim rep As New DocsStoredReport(startDate, endDate)
repData = rep.Execute(origin, RepParams.ChkRunOriginal.Checked)
csvData = rep.CsvOutput
If Not threadIsRunning Then
RepParams.CsvButton1.EnableCsvExport(True, rep.CsvOutput)
End If
End If
Catch ex As Exception
success = False
MyLastException = ex
End Try
Dim endRun = Now
lastResult = New ReportResult(success, endRun - startRun, repData)
Return lastResult
End Function
Friend Shared Sub RunReport()
If delRunReport Is Nothing Then Return
delRunReport.Invoke()
End Sub
#End Region
#Region "Format Output"
Public Sub FormatText(ByRef disp As RichTextBox) Implements IReport.FormatText
Dim iFont As New Font("Courier New", 12, FontStyle.Regular, GraphicsUnit.Pixel)
disp.SelectAll()
disp.SelectionFont = iFont
'disp.SelectionAlignment = HorizontalAlignment.Center
If disp.Find(DocsStoredReport.Header) = -1 Then Return
disp.SelectionStart = disp.Find(DocsStoredReport.Header)
disp.SelectionLength = DocsStoredReport.Header.Length
iFont = New Font("Courier New", 18, FontStyle.Bold, GraphicsUnit.Pixel)
disp.SelectionFont = iFont
'disp.SelectionAlignment = HorizontalAlignment.Center
disp.SelectionStart = disp.Find(DocsStoredReport.DateRange)
disp.SelectionLength = DocsStoredReport.DateRange.Length
iFont = New Font("Courier New", 18, FontStyle.Bold, GraphicsUnit.Pixel)
disp.SelectionFont = iFont
'disp.SelectionAlignment = HorizontalAlignment.Center
disp.SelectionStart = disp.Find(DocsStoredReport.SubHeader)
disp.SelectionLength = DocsStoredReport.SubHeader.Length
iFont = New Font("Courier New", 12, FontStyle.Bold Xor FontStyle.Underline, GraphicsUnit.Pixel)
disp.SelectionFont = iFont
'disp.SelectionAlignment = HorizontalAlignment.Center
disp.SelectionStart = disp.Find("Export Files")
disp.SelectionLength = "Export Files".Length
iFont = New Font("courier new", 12, FontStyle.Bold, GraphicsUnit.Pixel)
disp.SelectionFont = iFont
disp.SelectionStart = disp.Find(ExportFile.HeaderRow(False))
disp.SelectionLength = ExportFile.HeaderRow(False).Length
iFont = New Font("Courier New", 12, FontStyle.Bold Xor FontStyle.Underline, GraphicsUnit.Pixel)
disp.SelectionFont = iFont
End Sub
Public Sub FormatText(ByRef lbl As Label) Implements IReport.FormatText
End Sub
Public Sub FormatTreeView(ByRef trv As TreeView) Implements IReport.FormatTreeView
End Sub
Public ReadOnly Property DisplayXmlRootNode() As Boolean Implements IReport.DisplayXmlRootNode
Get
Return True
End Get
End Property
Public ReadOnly Property AttributeDisplay() As XmlAttributeDisplay Implements IReport.AttributeDisplay
Get
Return XmlAttributeDisplay.None
End Get
End Property
Public ReadOnly Property AttributeDelimiter() As String Implements IReport.AttributeDelimiter
Get
Return " | "
End Get
End Property
#End Region
#Region "Information"
Public ReadOnly Property ReportName() As String Implements IReport.ReportName
Get
Return "Documents Stored"
End Get
End Property
Public ReadOnly Property ReportDescription() As String Implements IReport.ReportDescription
Get
Return "Totals for the documents stored"
End Get
End Property
Public ReadOnly Property ReportExportType() As ExportType Implements IReport.ReportExportType
Get
Return ExportType.Text
End Get
End Property
Public ReadOnly Property HasValidParametersSelected() As Boolean Implements IReport.HasValidParametersSelected
Get
endDate = RepParams.DateRange.GetEndDate
startDate = RepParams.DateRange.GetStartDate
origin = RepParams.OriginSelector.SelectedValue
Return RepParams.ValidParameters
End Get
End Property
Public ReadOnly Property ReportHeader() As String Implements IReport.ReportHeader
Get
Return String.Empty
End Get
End Property
Public ReadOnly Property LastError() As Exception Implements IReport.LastError
Get
Return MyLastException
End Get
End Property
Public ReadOnly Property ReportResults() As ReportResult Implements IReport.ReportResults
Get
Return lastResult
End Get
End Property
Public ReadOnly Property AllowExport() As Boolean Implements IReport.AllowExport
Get
Return True
End Get
End Property
Public ReadOnly Property Parameters() As String Implements IReport.Parameters
Get
Dim params As Object() = New Object() _
{vbNewLine, RepParams.DateRange.GetStartDate.ToShortDateString, _
RepParams.DateRange.GetEndDate.ToShortDateString}
Return String.Format("StartDate: {1}{0}EndDate: {2}{0}", params)
End Get
End Property
Public Overloads Function ToString() As String Implements IReport.ToString
Return ReportName
End Function
#End Region
End Class
| Expanded visual basic functions/subs | 2015-12-01T18:26:23.000Z |
Verifica si es un nombre de twitter valido. Para diversos casos de uso, eliminar o dejar la arroba. | ^@((?!\.\-\!\#\$\%\+\'\&\/\(\)\=\?\¡\¿).[a-zA-Z0-9_]{1,14})$ | screen name twitter | 2016-01-06T18:48:16.000Z |
|
Validation of email with no allow to only special char before and after @ symbol, generic validation for domain | ^[_A-Za-z0-9-\+]+(\.[_A-Za-z0-9-]+)*[^~@#\^\$&\*\(\)\-_\+=\[\]\{\}\|\\,\.\?\s]@[^~@#\^\$&\*\(\)\-_\+=\[\]\{\}\|\\,\.\?\s]+(\.[A-Za-z0-9]+)*(\.[A-Za-z]{2,})$ | Email validate | 2016-07-28T16:26:27.000Z |
|
expression régulière pour les dates et les heures précises au millionième de seconde | ((0?[1-9]|[12][0-9]|3[01])\/(0?[1-9]|1[012])\/([0-9]{4})(\s([01][0-9]|2[0-4]):([0-5][0-9]):([0-5][0-9]))?(.([0-9]{3,6}))?) | 12/07/1994 12:12:12.620000 | regex date_time | 2015-12-10T13:28:08.000Z |
don't use my older one | (?=((A[TU]G)(?:.{3})*?(?:[TU]AG|[TU]AA|[TU]GA))) | tatgaatgaatgffffffatgfftaaftaafatgfatgfffffsdfatgffatgfffstaafftaafffffffffffffffatgtaaataa
atgffftaaf
atgffatgftaafftaa
atgatgtaataa
tttttttttttttaatgatgfffffffffftaa | better orf finder | 2015-08-03T08:43:48.000Z |
Matches, line by line, a comma separated list of decimal numbers with comma as decimal character (Spanish way)
Produces a list of comma separated pairs (space separated innermost) of decimal numbers with point as decimal character (English way) | ([\,]?)(.*?),(.*?),(.*?),([^,\n]+) | -5,1270516,36,4511997,-5,12376876,36,44785827,-5,12316936,36,44645229,-5,12098128,36,44464959,-5,11927452,36,44249823,-5,11787448,36,44130483,-5,11503048,36,43988193,-5,11298136,36,43932321,-5,11051788,36,43890813,-5,1062994,36,43792524,-5,1073704,36,44205732,-5,1092262,36,4427127,-5,10928704,36,4449573,-5,11439868,36,44664156,-5,11416072,36,4494348,-5,12014428,36,45678996,-5,12379684,36,45426204,-5,1270516,36,4511997
-5,2373088,36,4018572,-5,24624112,36,40067244,-5,2491384,36,39872772,-5,25086388,36,39455001,-5,2521966,36,39240261,-5,2551792,36,39058875,-5,25849336,36,38917395,-5,25736728,36,38870469,-5,25593844,36,3882411,-5,25539412,36,38690235,-5,2515756,36,38599326,-5,24923452,36,38546505,-5,24732616,36,38415195,-5,2461486,36,38364264,-5,2444962,36,38420514,-5,24023056,36,38179152,-5,23217088,36,39022551,-5,2373088,36,4018572 | Replace comma separated decimals (comma instead of point) | 2015-12-09T14:00:21.000Z |
This regular expression parses the uri of an one-time password typically masked by a QR Code.
The expression supports the core hotp and totp, name, secret and optional counter (for hotp) | otpauth:\/\/([ht]otp)\/(?:[a-zA-Z0-9%]+:)?([^\?]+)\?secret=([0-9A-Za-z]+)(?:.*(?:<?counter=)([0-9]+))? | otpauth://hotp/Example:testuser?secret=1234556677ABC&issuer=Example&counter=1
otpauth://totp/Example:testuser?secret=1234556677ABC&issuer=Example&counter=15
otpauth://hotp/Example:[email protected]?secret=ABC0123456
otpauth://totp/fred?secret=2345678BCDC&issuer=Example | Parse OTP from QR Code | 2015-11-06T14:08:39.000Z |
Extract resource location, name and query parameters from a URL | (?'location'.+)(?:\/(?'resource'[\w\-\._]+\.js))(?:\?(?'params'.+))? | leaflet-0.7.2.js
/leaflet-0.7.2.js
http://leafletjs.com/dist/leaflet.js
https://api.tiles.mapbox.com/mapbox.js/v1.6.3/mapbox.js
http://example.com/path/to/leaflet-0.7.2.js
http://example.com/path/to/mapbox-v1.6.2.js
http://leafletjs.com/dist/leaflet.js?v=123456&hide=true#section
| split URL into location-resource-params | 2014-05-22T17:10:25.000Z |
(([CTLS][1-9]+)\s(Wurzel[\w]*)) | Es zeigt sich eine T12 Wurzeleinenung links ohne Affektion der L4 Wurzel rechts | Lxx Wurzel | 2020-08-07T05:44:01.000Z |
|
parsing objdump output | ^\s(\w{1,}):\s+((?:\w\w\s)+)\s+(\w+)(.*) | 6bb: c3 ret
6bc: 0f 1f 40 00 nop DWORD PTR [rax+0x0]
6c0: 41 57 push r15
6c2: 41 56 push r14
6c4: 41 89 ff mov r15d,edi
6c7: 41 55 push r13
6c9: 41 54 push r12
6cb: 4c 8d 25 06 07 20 00 lea r12,[rip+0x200706] # 0x200dd8
6d2: 55 push rbp
6d3: 48 8d 2d 06 07 20 00 lea rbp,[rip+0x200706] # 0x200de0
6da: 53 push rbx
6db: 49 89 f6 mov r14,rsi
6de: 49 89 d5 mov r13,rdx
6e1: 4c 29 e5 sub rbp,r12
6e4: 48 83 ec 08 sub rsp,0x8
6e8: 48 c1 fd 03 sar rbp,0x3
6ec: e8 3f fe ff ff call 0x530
6f1: 48 85 ed test rbp,rbp
6f4: 74 20 je 0x716
6f6: 31 db xor ebx,ebx
6f8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0]
6ff: 00
700: 4c 89 ea mov rdx,r13
703: 4c 89 f6 mov rsi,r14
706: 44 89 ff mov edi,r15d
709: 41 ff 14 dc call QWORD PTR [r12+rbx*8]
70d: 48 83 c3 01 add rbx,0x1
711: 48 39 dd cmp rbp,rbx
714: 75 ea jne 0x700
716: 48 83 c4 08 add rsp,0x8
71a: 5b pop rbx
71b: 5d pop rbp
71c: 41 5c pop r12
71e: 41 5d pop r13
720: 41 5e pop r14
722: 41 5f pop r15
724: c3 ret
725: 90 nop
726: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0]
72d: 00 00 00
730: f3 c3 repz ret
| parsing objdump output | 2017-01-29T08:47:59.000Z |
Files | ([A-Za-z]+)(\d+)(\s*-\s*|\s*-|-\s*|-\s*)(\d+)(\s*-\s*|\s*-|-\s*|-\s*)(\d+)(\s*-\s*|\s*-|-\s*|-\s*)([A-Za-z\s]+(?=\S)[A-Za-z\s])(\s*-\s*|\s*-|-\s*|-\s*)(\d+) | MC077-021-001-Leak proof joint design and drawing for hull - 28092023
MC077-021-001-Leak proof joint design and drawing for hull - 28092023-A1 | Files | 2023-11-06T08:12:32.000Z |
find pattern in filename product name, version, build and extension | (?P<product_name>^.*)[-]((?P<ver>\*|\d+(\.\d+){0,2}(\.\*)?))[-](?P<build>.\d*)[.](?P<ext>bin|rpm)$ | anomali_match-4.4.0-5352.rpm
anomali_link_universal-4.4.0-36.bin
anomali_link_ESM-4.4.0-1234.bin
anomali_link_universal_2.4.0_hotfix-2.tar.gz
Anomali-Ulink-4.5-2139.rpm
| find pattern in filename product name, version, build and extension | 2021-06-30T07:22:56.000Z |
<h[1-9]{1}\s*[id=".+"]*>.*[<\/h[1-9]{1}>]* | <img src="/images/anleitungen/backen/pizza_steinofen.jpg" style="display:inline-block; margin:10px; float:left;" alt="Steinofen für die perfekte Pizza">
<p>Die perfekte Pizza im Stile einer neapolitanischen oder römischen hat einen dünnen, knusprigen, aber nicht harten, sondern eher zart-knusprigen Boden. Optimale Bedingungen hierfür hat ein Steinofen mit Temperaturen bis zu 500 Grad. Jedoch dürften nur die wenigsten die Möglichkeiten haben, sich einen solchen zu Hause aufzustellen. Was das entscheidende bei der Zubereitung ist: möglichst hohe, direkte Hitze. Durch direkte Hitze, also das Aufliegen auf einer möglichst heißen Unterlage, wird erreicht, dass der Boden unten knusprig wird, die Auflage aber saftig bleibt.</p>
<p>Ein herkömmliches Backblech speichert nicht genügend Hitze, um diese Bedingungen zu erreichen. Ein wenig bessere Ergebnisse erzielt man mit einem Pizzablech, bei dem die Hitze entweder durch eingestanzte Löcher direkter zugeführt wird oder durch die erhöhte Dicke der Bleche eine größere Hitzespeicherung erreicht wird. Durch die Löcher kann auch die Feuchtigkeit entweichen, ein Effekt, der sonst durch die Aufnahmefähigkeit des Steins erreicht wird.</p>
<h2>Der Pizzastein</h2>
<p>Wesentlich besser ist die Verwendung eines Pizzasteins. Ein solcher Stein mit einer Dicke von 3, besser 4 cm speichert die Hitze und gibt sie direkt an die Pizza ab. Pizzasteine sind aus hitzebeständigem Schamott-Ton, wie er auch für die Innenräume von Öfen verwendet wird. Man kann sie im Fachhandel erwerben. Eine preiswerte Alternative sind Granitplatten, wie sie in jedem Baumarkt zu finden sind. Wichtig ist: der Stein sollte ausreichend dick und darf nicht glasiert sein. Granit hat übrigens neben dem geringeren Preis noch einen anderen Vorteil: Die Oberfläche ist feinporiger, übergelaufene Sauce oder Käse lassen sich so besser entfernen als von einem Schmottstein.</p>
<p><b>Wichtig:</b> Damit der Pizzastein seine Leistung entfalten kann, muss er ausreichend vorgeheizt sein. Das bedeutet, dass man ihn mindestens mindestens 15 Minuten nach erreichen der Betriebstemperatur noch weiter heizen sollte, bevor die erste Pizza in den Ofen kommt. Wer für mehr als 2 Personen Pizza backt, kann auch zwei Steine mit ausreichend Abstand übereinander in den Ofen schieben.</p>
<h3>Tipps und Tricks rund um den Pizzastein</h3>
<ul>
<li><strong>Ausreichend vorheizen</strong> <br />
Den Stein mit dem Ofen auf dem Rost auf unterster Einschubleiste aufheizen und nach erreichen der Betriebstemperatur mind. 20 Minuten warten.</li>
<li><strong>Belegen auf dem Schieber</strong><br />
Die Pizza direkt auf dem Schieber belegen und danach zügig einschießen, damit der Teig nicht aufweicht.</li>
<li><strong>Grieß als Unterlage</strong> <br />
Den Schieber mit Grieß bestreuen, damit die Pizza gut vom Schieber rutschen kann.</li>
<li><strong>Einschießen üben</strong><br />
Das Einschießen der Pizza auf den Stein am Besten vorher üben, um den richtigen Schwun zu testen: Erst mit unbelegtem, später mit belegtem Boden auf der Arbeitsplatte trainieren: Durch schnelles Vorstoßen und Zurückziehen gelangt die Pizza auf den Stein.</li>
<li><strong>Backpapier</strong> <br />
Wer unsicher ist, kann unter die Pizza ein ausrechend große Stück Backpapier legen. Vorsicht beim Rüberschieben auf den Stein ist dennoch geboten: der Stein ist sehr heiß!</li>
</ul>
<h2>Der Pizzaschieber / die Pizzaschaufel</h2>
<p>Da der Pizzastein sehr heiß und die Pizza sehr dünn und biegsam ist, kann sie nicht einfach auf den Stein gelegt werden. Zum Befördern auf den Pizzastein (Einschießen) verwendet man daher einen Pizzaschieber, auch Pizzaschaufel genannt: Ein dünnes Brett mit Griff, auf dem die Pizza iiegt und vom dem sie aus mit Ruckartiger Bewegung auf den Stein "geschossen" wird. Auch die Pizzaschaufel ist im Handel erhältlich. Handwerklich Begabte können sie jedoch auch aus dünnem Sperrholz selber zurecht sägen. Die Kanten mit Schmiergelpapier abflachen.</p>
<p>
Mit Pizzastein und Pizzaschaufel hat man das nötige Equipement für den heimischen Pizzaofen. Was jetzt noch fehlt ist der richtige Teig und ein aromatischer Sugo.</p> | Get any Headline tags (h1, h2 etc.) | 2015-12-23T12:56:26.000Z |
|
^\{(.*)[\s\,]*\}$ | {1,5,4,'11' , 9 , 'a'} | Set in String | 2016-04-23T10:22:17.000Z |
|
^(?:http(?:s)?:\/\/.*\/produtos-exclusivos\/)(.*?)\b(\/.*)?$ | http://rogeriobonfim.local/produtos-exclusivos/245/sadf/sadf | select folders after url | 2016-03-16T21:26:33.000Z |
|
Regex for validating if a string is a valid resource path to load resources from the resources folder in Unity. | ^([[:alpha:]_]\w*[[:alnum:]])?(\/([[:alpha:]_]\w*[[:alnum:]]))*$ | Soren/asDAS/AFASFsf | Unity Resource Path Regex | 2016-02-01T03:36:06.000Z |
[0-9]{4}[A-Z]{4}[0-9]{3}F[0-9]{4} | 0209GQQH003F0011SBB FRQ05SUPERB1G 0TR 201509240410 201509240410DEN XDBKR AG99999992EF3B9 F8BB947FECMPTSGGWS G015006 IYYYNEWET 41GBLONN3N5 NY 2PYN 1G 002N YNNNPN0118GQPF000F000100NNNNYNNN0TR 9999999N N 0136GQFR030F0000209GQQH003F0011SBB FRQ05SUPERB1G 0TR 201509240410 201509240410DEN XDBKR AG99999992EF3B9 F8BB947FECMPTSGGWS G015006 IYYYNEWET 41GBLONN3N5 NY 2PYN 1G 002N YNNNPN0118GQPF000F000100NNNNYNNN0TR 9999999N N
0209GQQH003F0011SBB FRQ05SUPERB1G 0TR 201509240410 201509240410DEN XDBKR AG99999992EF3B9 F8BB947FECMPTSGGWS G015006 IYYYNEWET 41GBLONN3N5 NY 2PYN 1G 002N YNNNPN0118GQPF000F000100NNNNYNNN0TR 9999999N N
0209GQQH003F0011SBB FRQ05SUPERB1G 0TR 201509240410 201509240410DEN XDBKR AG99999992EF3B9 F8BB947FECMPTSGGWS G015006 IYYYNEWET 41GBLONN3N5 NY 2PYN 1G 002N YNNNPN0118GQPF000F000100NNNNYNNN0TR 9999999N N | klr header | 2015-10-10T21:13:36.000Z |
|
Only captures value for converting percentage to decimal.
Returns empty if percentage but no value.
no match = no percentage found
| ([0-9]*\.?[0-9]*)\s*% | (x-10)+1.23 * 40.014 dd % something else
(x\1-0.3) + (y/1-.15)
(x\(1/30.011%) + (y/(1/15%)
| Matches percentage with any number of digits | 2015-06-10T19:26:33.000Z |
".+" | La tierra tiene "montañas" y muchos "oceanos" para explorar
agente 007 | Gready y Lazy | 2018-08-23T04:00:42.000Z |
|
log_format timed '$http_x_forwarded_for - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$remote_addr" '
'$request_time $upstream_response_time $pipe';
| (?:-|(?P<real_ip>[\-\da-f.:, ]+)) - (?<remote_user>\S+) \[(?<timestamp>[^\]]+)\]\s+"(?:\-|(?<request>\w+) (?<request_uri>[^ \?]+)(?:\?(?<request_uri_query>[^ ]*))? (?<request_version>[\w\/\.]+))"\s+(?P<status>[1-9]\d{2})\s+(?P<body_bytes_sent>\d+)\s+"(?<http_referer>[^"]+)"\s+"(?<http_user_agent>[^"]+)"\s+"(?P<remote_ip>[\da-f.:]+)" (?:\-|(?P<upstream_response_time>\d+(?:.\d+)?))\s+(?P<request_time>\d+(?:.\d+)?) (?P<pipe>[\.p]) | 10.100.7.118 - - [02/Aug/2022:19:27:57 +0800] "GET /api/article/list/news HTTP/1.1" 200 103594 "https://165.npa.gov.tw/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36" "172.27.31.231" 0.062 0.062 .
49.216.25.168, 203.66.34.45 - - [02/Aug/2022:19:28:10 +0800] "GET /assets/i18n/zh-tw.json HTTP/1.1" 200 9760 "https://165.npa.gov.tw/" "Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" "172.27.31.231" 0.031 0.031 .
| extended nginx log format | 2022-08-04T07:28:11.000Z |
(?P<SYMBOLS>[\#/\-\!=()_:.\[\]])|(?P<NUMBERS>[\d]) | #/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+1):
if a == 2 or a == 3 or a == 5 or a == 7 or a == 11:
ret.append(a)
elif a %2 == 0 or a%3 == 0 or a%5 == 0 or a%7==0 or a%11 == 0:
continue
else:
ret.append(a)
return ret
number = int(input())
prime = prime_vector(number)
ret = []
p = 0
while number:
if is_prime(prime,number):
ret.append(number)
break
elif number%prime[p] == 0:
ret.append(prime[p])
number = int(number / prime[p])
else:
p = p + 1
for a in range((len(ret))):
print(ret[a],end=" ")
| Python Regex for symbols and numbers | 2020-10-06T19:15:14.000Z |
|
To mark them _italic_ | (~~([^~~])*~~) | <p><span style=\"color: #44444d; font-family: Roboto, sans-serif; font-size: 16px;\">Indian women's cricket team captain **Mithali Raj** became the all-time highest run-scorer in women's ODI __cricket__, going past ~~Charlotte~~ Edwards' tally of 5,992 runs, against Australia in the ICC Women's World Cup on Wednesday. Mithali is also the second player after Charlotte Edwards to score over 500 runs in four different calendar years in women's ODI cricket.</span></p> | Extract just the strings surrounded by ~~ | 2017-07-12T11:43:59.000Z |
(\b\w{30,1000})?\b | http://www.youtube.com/watch?v=qsXHcwe3krw
http://41.media.tumblr.com/tumblr_lfouy03PMA1qa1rooo1_500.jpg
enfp and intj moments https://www.youtube.com/watch?v=iz7lE1g4XM4 sportscenter not top ten plays https://www.youtube.com/watch?v=uCdfze1etec pranks
| Remove long words | 2021-02-28T23:57:09.000Z |
|
Matches customer portion of call detail records found in the fields dcontext, lastdata, and usefield of an Asterisk CDR table. Additional processing required to get fully clean values. | ([\w-]+[_][\w-]*) | 904-555-1212_Ramada-Holiday-opt2
foo ABC_TEMP_11_2011_09-02_9045551234-opt2 foo
foo abc_TEMP_11_2011_09-02_9045551234 foo
foo 904-900-2197_9045551212 foo
foo FooBar_AL_2055551212 foo
foo 904-555-1212_9045551212 foo
Maintenance Notification 7725551212 Phone FooBaz_at_St_Lucie_West_FL_7725551212 liveCallback
1@FooFoo_at_Summerwood_TX_2814581010|sg(14)
users/Jacksonville_FL/MG|m
Office Notification 5105551212 Phone Los_Angeles_CA
Maintenance LogIn
Courtesy Transfer 8665551212
SIP/trunk_2_abc/18669302777
1@Popes_Hat_NC_7045551212|sg(14)
users/Frogs_Feet_Washington_DC_2025551212/MG|m
users/Mt_Food_Portland_OR_5035551212/INTRO|m
SIP/trunk_2_icc/18669302777
3@Jelly_Bean_NC_8285551212|sg(14)
| Substring Matching Word, Hyphen, Underscores and Digits | 2016-05-25T17:36:37.000Z |
[0 1][0-9]\/[0-2][0-9][0-9][0-9] | 03/4444 | smartax | 2018-10-20T15:56:01.000Z |
|
Get Content within brackets | \((.*?)\) | Daf Unit Price ( Barrel/eur) | Get Content within brackets | 2015-08-06T08:39:52.000Z |
Originally written by Pumbaa80, but slightly adjusted: http://stackoverflow.com/questions/4810841/how-can-i-pretty-print-json-using-javascript | (?:"(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?|([\{\}\[\]])) | {
"a": 1,
"b": "foo",
"c": [
false,
"false",
null,
"null",
{
"d": {
"e": 130000,
"f": "1.3e5"
}
}
]
} | Match all parts of the valid JSON | 2014-03-20T22:29:45.000Z |
If given a linux file path match the filename without the extension. It extracts FileNameWithoutExtension into its own match group so that you can use it in things like Logstash Grok. | (?<FileNameWithoutExtension>\w+)(\.\w+)?[^\/]*$ | /home/cmagnuson/Documents/WCSLogBackups/autoShipMgr
/home/cmagnuson/Documents/WCSLogBackups/autoShipMgr.20150901170004.txt
| File name without extension from linux path | 2015-09-11T01:54:31.000Z |
\d{2,3}[- .]+\d{3}|\b[VF,VC,vf,vc]{0,2}[- ]?\d+[- ]\d{3,}\b|\d{5,6} | vf-123456
vf-123456 | TEST 1 | 2015-11-09T10:21:09.000Z |
|
First letter capitalized, well within the first four characters has a number and the minimum length is 8 | (?=^[A-Z])(?=.{1,4}\d)(?=.*[A-Za-z])[A-Za-z\d]{8,} | Ab2Dfsss | Password | 2016-07-20T21:25:30.000Z |
package\.preload\[\s*(?P<qute>['\"])(\w+(?:\.\w+)*)(?P=qute)\s*\]\s*=\s*\(\s*function\s*\(\s*\.{3}\s*\) |
return scheduler
end)
package.preload['packages.utils.toluaEx'] = (function (...)
| lua moudle | 2016-08-20T02:28:57.000Z |
|
[ A-Za-z0-9_@./#&+-]{7} | DEMO | 2014-12-12T03:28:33.000Z |
||
^7656[0-9]*$ | 76561198004982408 | steam profile ID match | 2015-12-30T12:58:55.000Z |
|
^[A-Z0-9\._\-\/]{1,15}(,[A-Z0-9\._\-\/]{1,15})*$ | ABC,POPO1/1.2C | Trading symbol | 2018-05-09T17:07:37.000Z |
|
validates strings in time format HH:mm with hour in 24h format. only accepts up to 23:59 | (0?[0-9]|1[0-9]|2[0-3]):[0-9]+:(0?[0-9]|[1-5][0-9]) | 02:01 | time format HH:mm | 2015-10-28T13:13:34.000Z |
**This is a basic validation expression for eBay Usernames.**
Check [eBay Username policy](https://www.ebay.com/help/policies/identity-policies/username-policy?id=4235) for all the rules.
*NOTE: Not all the rules are implemented in this expression.*
| ^[a-zA-Z0-9]+((_|-|\.)?[a-zA-Z0-9])*$ | john
john.
john.doe
john80
john_doe
john__doe
TESTUSER_john_doe
_john
john_doe_
john doe
| eBay Username (for basic validation) | 2018-11-04T19:05:58.000Z |
^\s*(?:\+?(\d{1,3}))?[-. (]*(\d{3})[-. )]*(\d{3})[-. ]*(\d{4})(?: *x(\d+))?\s*$ | +989163678024 | Phone number | 2015-11-22T12:22:04.000Z |
|
verify if a string can be use in a username pattern for my project | ^(((((([a-zA-Z]){1,})[ ]){1,})((([a-zA-Z]{1,})|([0-9]{1,})){1}))|(([a-zA-Z]{1,}){1}))$ | verifyWebName | 2018-01-23T08:42:00.000Z |
|
(((((#)|())(([ \t\n]+|()))([a-zA-Z0-9]+)([ \t\n]+))|())((([ \t\n]+|()))((move|mult)|([a-z]+)))((([ \t\n]+|()))(:))((([ \t\n]+|()))([a-zA-Z0-9,&\* \t\"\n\[\]]+))(;))|((([ \t\n]+|()))((save|end)|([a-z]+))(([ \t\n]+|()))(;)) |
{
stream: gogo;
move: some, reg1;
#jix mult: &num, reg2;
push: reg2;
sus : 0x20;
add : him, her;
#goto
jump: loop;
dec : him, *reg2;
#get
add : onu, buna;
jump: goto;
#mydear move: "moses", rgb[8];
save ;
end ;
}
{
move: mos, reg1;
mult: &num, reg2;
push: reg2;
int : 0x20;
#lab
add : him, her;
jump: loop;
#mos
dec: him, *reg2;
#inst
add: onu, buna;
jump: lab;
save;
end;
}
{
inc: moses, to;
#io
push: him;
#kim
jump: frame;
}
okbro () {
dec: him, beat;
#his
push: him;
jump: main;
ret; } | mnemonic identifier | 2018-01-18T21:34:08.000Z |
|
<\S(?:\s*.*?)> | <p class="MsoNormal" style="line-height: normal; margin-bottom: 6pt;" align="justify">Les RPS conformément à la méthodologie, ne figurent pas dans cette analyse mais sont bien pris en compte. Il conviendra dans le cadre des RPS que l'outil peut être désactivé en dehors des heures normales de service (équilibre vie privée vie professionnelle).<br /></p>Rappels des modalités d'application des règles d’< ut< il>>isat< ion <i>ssues des </i>dispositions < générales décrites dans l’IN 7994< | SQL Query | 2020-12-02T01:13:32.000Z |
|
\b can be replicated as (?<=\w)(?=\W)|(?<=\W)(?=\w)
Understanding how to create these class transitions can be beneficial for several reasons. In this instance, counting the results of this regex can be used to measure randomness within strings containing multiple character classes. | (?<CCT>(?:(?<=[A-Z])(?=[^A-Z]))|(?:(?<=[a-z])(?=[^a-z]))|(?:(?<=\d)(?=\D))|(?:(?<=[^A-Za-z\d])(?=[A-Za-z\d]))) | this regex matches all transitions. 1nur15itmightb3interest1ng | Matching Character Class Transitions (customization of \b) | 2018-02-05T18:03:07.000Z |
First Character Set: Any 4 numbers
Second Character Set: <->
Third Character Set: Any amount of letters, optional
Fourth Character Set: one white space, optional
Fifth Character Set: Any amount of letters, optional
Sixth: one white space, optional
Seventh: you get the point…
| ([0-9]{4})(-)([A-Z]+)?(\s)?([A-Z]+)?(-)?(\s)?([A-Z]+)?(\s)?([A-Z]+)? | 3000-INSURANCE PAYMENT (INSURANCE)
3000-INSURANCE (INSURANCE)
1001-PATIENT CO-PAYMENT
2000-INSURANCE PAYMENT
3000-CONTRACTUAL WRITE OFF
9817-PAST TIMELY TO SUBMIT
9880-MEDICARE SEQUESTRATION
3115-TIMELY FILING
9532-LIABILITY SETTLEMENT ADJUSTMENT
9880-MEDICARE SEQUESTRATION
3115-TIMELY FILING
9532-LIABILITY SETTLEMENT ADJUSTMENT
| ACI Insurance Payment Match 2000-INSURANCE PAYMENT | 2020-10-01T15:05:15.000Z |
^(?P<bar>\|(?:{(?P<num>[0-9]+), *(?P<denom>[0-9]+)})?)? *(?P<chord>\[[^\]]+\])?(?P<lyric>.*)$ | Hello
|Hello
|[Am]Hello
|{1,2}Hello
|{1,2}[Am]Hello
|{1,12}[Am G] Hello | Chord scanning | 2017-01-21T16:47:56.000Z |
|
http:\/\/(www)?[a-zA-Z0-9]+\.(com|ru|net)\/(\w+)* | http://google.com/ | 10 | 2015-10-30T17:18:43.000Z |
|
If needed to test entered website | ^(((http:|https:)+(\/\/|\\\\))|)+([0-9\w+]+\.+[\w+]{2,15}) | sdwsasdjfasdfjasdfdfsfsefsdflkasjdflkashdlfahwle.we | website | 2015-07-28T13:07:02.000Z |
Get time in string 33:20 p.m | (\d\d{0,1}){1}(:\d\d{0,1}){0,1}(\sa.m|\sp.m){0,1} | set alarm at 33:20 p.m | format time:"33:20 p.m" | 2015-12-11T10:51:45.000Z |
no reply e-mail addresses don't want to receive a reply. Unfortunately, not all no reply e-mail addresses are formatted like [email protected], so in order to catch as many of them as possible I made this regular expression which matches many forms of no reply e-mail addresses. | .*n.?t?.*reply.*@(.+\.)+.+ | filter noreply-ish e-mail addresses | 2015-04-25T09:52:28.000Z |
|
Parses email, also distorted ones, and convert them back to the real ones. It can recognize at maximum two dots notations, just add '.\5' at the end of the substitution string.
Inspirated by dislick's work: https://regex101.com/r/wB7xJ7/1 | ^(?P<Username>[-\w\.]+)(?:\s+\W*at\W*\s+|\s*[^\@\s]*?@[^\@\s]*?\s*)(?P<Domain>([\w\-]+)(?:(?:\.|\s+\W*?dot\W*?\s+)([\w\-]+))+?(?:(?:\.|\s+\W*?dot\W*?\s+)([\w\-]+))??$) | Parse email, also distorted ones, and convert them back to the real ones.
Inspirated by dislick's work: https://regex101.com/r/wB7xJ7/1
[email protected]
[email protected]
gigilafontana .at. gmail [dot] com
[email protected]
domenico-tosello at dotcom-sas dot com
my.e-M4il [at] w3-spAce.org
[email protected] dot domain dot info
email@foo dot foo dot foo dot foo | Email parser, also distorted forms | 2015-07-05T09:37:22.000Z |
<td.*?class="namelinks".*?">(.+?)</a> | <tr>
<td class="field_domain"><a href="/goto/1/eboo74/2/" target="_blank" title="advocaciamdc.com" class="namelinks" id="linksdd-domaineboo74">advocaciamdc.com</a><ul id="links-domaineboo74" class="kmenucontent" style="display:none;"><li class="first"><a href="/goto/16/eg4d59/2/" target="_blank" class="favicons favgodaddy" title="Register at GoDaddy.com">GoDaddy.com</a></li><li><a href="/goto/53/ee87fh/2/" target="_blank" class="favicons favdynadot" title="Register at Dynadot.com">Dynadot.com</a></li><li><a href="/goto/43/eecp19/2/" target="_blank" class="favicons favnamecheap" title="Register at Namecheap.com">Namecheap.com</a></li></ul></td>
<td class="field_watchlist"><span class="wl" id="wl-2-eboo74"></span></td>
<td class="field_length">12</td>
<td class="field_bl"><a href="/goto/34/ebdukr/2/" target="_blank" class="bllinks" title="0" id="backlinks-bleboo74">0</a><ul id="links-bleboo74" class="kmenucontent" style="display:none;"><li class="first"><a href="/goto/34/ebdukr/2/" target="_blank" class="favicons favmajestic" title="Check Backlinks on Majestic.com">Majestic.com</a></li><li class="seperator"> </li><li><a href="/goto/28/eg64b8/2/" target="_blank" class="favicons favseokicks" title="Check Backlinks on SEOkicks.de">SEOkicks.de</a></li><li><a href="/goto/56/ed1td8/2/" target="_blank" class="favicons favsemrush" title="Check Backlinks on SEMRush.com">SEMRush.com</a></li><li><a href="/goto/27/ecwtfo/2/" target="_blank" class="favicons favsearchm" title="Searchmetrics">Searchmetrics</a></li></ul></td>
<td class="field_domainpop"><a href="/goto/28/eg64b8/2/" target="_blank" title="0">0</a></td>
<td class="field_creationdate"><a href="/goto/8/edemrz/2/" target="_blank" title="Whois Creation Date: 2019-08-06">2019</a></td>
<td class="field_abirth">-</td>
<td class="field_aentries"><a href="/goto/6/eddzzf/2/" target="_blank" title="0 saved crawl results">0</a></td>
<td class="field_alexa"><a href="/goto/4/eddwsg/2/" target="_blank" title="0" class="">0</a></td>
<td class="field_majestic_globalrank"><a href="/goto/34/ebdukr/2/" target="_blank">0</a></td>
<td class="field_dmoz">-</td>
<td class="field_statustld_registered"><a href="/domain/advocaciamdc.com#namestatus" target="_blank">0</a></td>
<td class="field_statuscom"><a href="/goto/18/efli0j/2/?tld=com" target="_blank" class="sprite stlds stld22c" title=".com available"><span>available</span></a></td>
<td class="field_statusnet"><a href="/goto/18/efli0j/2/?tld=net" target="_blank" class="sprite stlds stld22c" title=".net available"><span>available</span></a></td>
<td class="field_statusorg"><a href="/goto/18/efli0j/2/?tld=org" target="_blank" class="sprite stlds stld22c" title=".org available"><span>available</span></a></td>
<td class="field_statusbiz"><a href="/goto/18/efli0j/2/?tld=biz" target="_blank" class="sprite stlds stld22c" title=".biz available"><span>available</span></a></td>
<td class="field_statusinfo"><a href="/goto/18/efli0j/2/?tld=info" target="_blank" class="sprite stlds stld22c" title=".info available"><span>available</span></a></td>
<td class="field_statusde"><a href="/goto/18/efli0j/2/?tld=de" target="_blank" class="sprite stlds stld22c" title=".de available"><span>available</span></a></td>
<td class="field_adddate">2020-10-25</td>
<td class="field_related_cnobi">-</td>
<td class="field_wikipedia_links">-</td>
<td class="field_changes">Yesterday 18:55</td>
<td class="field_whois"><a href="/goto/1/eboo74/2/" target="_blank" title="Register now" class="status_free">available</a></td>
<td class="field_relatedlinks"><a class="sprite sicon smenu domainlinks" href="#" id="expiredcom-eboo74" title="Related Links (click here for menu)"><span>RL</span></a><ul id="links-eboo74" class="kmenucontent" style="display:none;"><li class="first"><a href="/goto/16/eg4d59/2/" target="_blank" class="favicons favgodaddy" title="Register at GoDaddy.com">GoDaddy.com</a></li><li><a href="/goto/53/ee87fh/2/" target="_blank" class="favicons favdynadot" title="Register at Dynadot.com">Dynadot.com</a></li><li><a href="/goto/43/eecp19/2/" target="_blank" class="favicons favnamecheap" title="Register at Namecheap.com">Namecheap.com</a></li><li class="seperator"> </li><li><a href="/domain/advocaciamdc.com" class="favicons favhomepage" target="_blank" title="Domain Details on ExpiredDomains.net">Domain Details</a></li><li><a href="/goto/116/ebesj8/2/" target="_blank" class="favicons favgodaddy" title="GoDaddy.com Appraisal">GoDaddy Appraisal</a></li><li><a href="/goto/25/eep3go/2/" target="_blank" class="favicons favsemrush" title="Check Rankings on SEMRush.com">SEMRush</a></li><li><a href="/goto/93/eb1rfr/2/" target="_blank" class="favicons favtrademarkia" title="Check Domain Name on Trademarkia">Trademarkia</a></li><li><a href="/goto/7/ec5uh7/2/" target="_blank" class="favicons favgoogle" title="Google the Domain Name">Google Name</a></li><li><a href="/goto/11/eekeoy/2/" target="_blank" class="favicons favgoogle" title="Google info:domain.tld">Google Info</a></li><li><a href="/goto/15/ef6qyy/2/" target="_blank" class="favicons favgoogle" title="Google site:domain.tld">Google Site</a></li><li><a href="/goto/6/eddzzf/2/" target="_blank" class="favicons favarchiveorg" title="Check Website in Wayback Machine">Wayback Machine</a></li><li><a href="/goto/9/ebbfv1/2/" target="_blank" class="favicons favhomepage" title="Visit the Website">Visit Domain</a></li><li><a href="/goto/8/edemrz/2/" target="_blank" class="favicons favwhois" title="Whois Domain">Whois Domain</a></li><li><a href="/goto/21/ecqo3m/2/" target="_blank" class="favicons favdomaintools" title="Check Domainhistory on Domaintools.com">Domaintools.com</a></li></ul></td>
</tr> | select domains from expireddomains | 2020-10-26T07:23:57.000Z |
|
匹配正确的 ip + 端口,端口可以不写 | (?<=\/\/)(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(:[\d]{1,5})?(?=\/) | http://172.12.10.253:8/test/live
http://172.12.10.253:809009090/test/live
http://172.12.10:8090/test/live | IP + port | 2020-03-30T05:48:55.000Z |
Useful for parsing HTML templates written in mustache language. This regex does not support custom delimiter tags. For documentation see: http://mustache.github.io/mustache.5.html | {{(?:\s*[^\s{}]+\s*|{\s*[^\s{}]+\s*}|[&#^\/>!]\s*[^\s{}]+\s*)}} | {{{ holamundo}}} | Mustache Language parser regexp | 2017-12-25T18:12:42.000Z |
([0-9A-Za-z_\.-]+)@([]0-9A-Za-z_\-]+)\.([a-z]{2,9}) | grep -P email | 2020-07-25T18:02:12.000Z |
||
/(\d+)/? | https://www.dndbeyond.com/profile/Gadianton/characters/16837355
ddb.ac/characters/16837355/sfmp2b
https://www.dndbeyond.com/characters/16837355/sfmp2b | Character ID from different DnDbeyond URLs | 2019-09-28T21:17:07.000Z |
|
\+7\s\(\d{3,4}\)\s\d{2,3}\-\d{2}\-\d{3} | +7 (3452) 10-10-105
+7 (343) 100-10-105 | 3 | 2015-10-30T17:09:16.000Z |
|
ELB log parser | ^(?P<ts>\S+)\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+(?P<status>[^"]+)\s+\S+\s+\S+\s+"(?P<request>[^"]+)\s+HTTP\/\d.\d"\s+"(?P<agent>[^"]+)"\s+-\s+-$ | 2015-12-04T12:00:15.200494Z prod-web-elb 100.43.91.12:35206 10.26.0.113:80 0.000048 0.000485 0.00002 503 503 0 206 "GET http://www.cimri.com:80/dizustu-bilgisayar/en-ucuz-toshiba-satellite-c50-b-171-laptop-notebook-fiyatlari?10335842 HTTP/1.1" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" - - | aws-elb-access-log | 2015-12-04T15:43:02.000Z |
Removes all number and letter characters. | [^A-Za-z0-9] | @" cash$ mon*&ey 213asdf | Remove Non-Alphanumeric Characters | 2016-08-09T17:59:13.000Z |
((?=ra\/[0-9]{4}\/[0-9]+\/[0-9]{2}\/[0-9]+\/\Qimage(2).jpg\E).+$) | http://localhost:8080/ra/2015/10160/11/115500/image(2).jpg" | test | 2016-02-18T11:20:26.000Z |
|
^[0-9a-zA-Z~@#$^*()_+=[\]{}|\\,.?: -'.\s]{2,20}$ | abjc
| - | 2015-11-13T14:33:52.000Z |
|
password in java | ^(?=.*[~!@#$%^&*()_+`\-=\[\]\{\};':\",./<>?])(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])\S{6,}$ | abcdef
ABCDEFG
123456
!@#$%^
abc123
Abc123
adfasdf Abc123! dafdsfsf
Abc123'
Abc$123
Abc 123
Aaaa$12
aaaA$12
$12aaaA | Password in java | 2021-06-04T04:41:44.000Z |
^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$ | 127.0.0.1
192.168.1.1
192.168.1.255
255.255.255.255
0.0.0.0
1.1.1.01
55.91.5.117
30.168.1.255.1
127.1
192.168.1.256
-1.2.3.4
3...3 | IPV4 regex | 2018-06-13T09:01:54.000Z |
|
Solves the practice problem from https://www.sitepoint.com/learn-regex/ | ^\w+((-|\.|_)\w+)*\w*@\w+(-\w)?(\w*)?\.\w{2,3}(\.\w{2,3})?$ | # invalid email
abc
abc.com
# valid email address
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
# invalid email prefix
[email protected]
[email protected]
[email protected]
abc#[email protected]
# valid email prefix
[email protected]
[email protected]
[email protected]
[email protected]
# invalid domain suffix
[email protected]
abc.def@mail#archive.com
abc.def@mail
[email protected]
# valid domain suffix
[email protected]
[email protected]
[email protected]
[email protected]
[email protected] | Practice email validation | 2021-04-03T05:18:57.000Z |
Date in format YYYYMMDD
Year between [1900-2099]
No leap year check but month 02 is limited to 29 days.
| ^((19\d{2})|(20\d{2}))(((02)(0[1-9]|[1-2][0-9]))|(((0(1|[3-9]))|(1[0-2]))(0[1-9]|[1-2][0-9]|30))|((01|03|05|07|08|10|12)(31)))$ | 20140229-3015 | Date YYYYMMDD | 2014-07-19T20:12:18.000Z |
(^function|[ ;}\n=]function)(|[ ]+[a-zA-Z_0-9]*[ ]*)([(]([^()]|(?3))*[)])[ \n]*([{]([^{}]|(?5))*[}]) | function(hjsjds(asasa)){kldsklsdjskhd ={ b = function(){ }; } ;ksdjdskdk jksjdsdsdksnn}
| Find function | 2016-02-01T15:11:31.000Z |
|
replace .* with a test string | ">.*< | android strings tester | 2015-10-21T16:07:53.000Z |
|
Strips all non "A-Z,a-z,0-9+-_" characters and replaces them with a single "-" | [^a-zA-Z0-9\+(\-){1,}]{1,} | some folder\Nmae B@!Q$% ~!@#$%^&*()_`1234567890-~!@#$%^&*()_+-Chara | File name Cleanup | 2016-05-13T15:08:19.000Z |
([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}) |
Starting Nmap 6.47 ( http://nmap.org ) at 2015-05-26 22:43 ric
Initiating ARP Ping Scan at 22:43
Scanning 254 hosts [1 port/host]
Completed ARP Ping Scan at 22:43, 10.61s elapsed (254 total hosts)
Initiating Parallel DNS resolution of 254 hosts. at 22:50
Completed Parallel DNS resolution of
254 hosts. at 22:50, 16.50s elapsed
Nmap scan report for 192.168.1.0 [host down]
Nmap scan report for 192.168.1.2 [host down]
Nmap scan report for 192.168.1.3 [host down]
Nmap scan report for 192.168.1.4 [host down]
Nmap scan report for 192.168.1.5 [host down]
Nmap scan report for 192.168.1.7 [host down]
Nmap scan report for 192.168.1.8 [host down]
Nmap scan report for 192.168.1.9 [host down]
Nmap scan report for 192.168.1.10 [host down] | Find a IPV4 | 2015-05-27T04:15:22.000Z |
|
^([1-9]|1[0-2])(?:(\:[0-5][0-9]|1[0-9]|2[0-9]|3[0-9]|4[0-9]|5[0-9]))?(?:(\:[0-5][0-9]|1[0-9]|2[0-9]|3[0-9]|4[0-9]|5[0-9]))?(am|pm)$ | 832821 | 2016-01-20T00:04:19.000Z |
||
Match patterns of form "{% sentence_prefix %} (is|are) (a|the) {% description_of_prefix %}". Should almost always match part of the first sentence of a Wikipedia article. | (([\w\s\d]+\s)(is the|is a|are the|are a|was)\s([\w\d\s\[\]\)\(,']+)) | Hendrik Weber (born 1975), better known as Pantha du Prince, Panthel and Glühen 4 is a German producer, composer and conceptual artist for Electro, Techno, House, Minimal and Noise affiliated with Hamburg's Dial music label[1][2] and British label Rough Trade.[3] | [Wikipedia] Article descriptive tokenizer | 2018-02-18T08:50:11.000Z |
(房间|卫生)*(收拾|清洁|打扫|清理|整理|换枕头|换床单)(房间|卫生|一下)*(垃圾)* | 早餐
喂
嗯,不是,嗯,我我我不,我这边是去要五啊,我听同事说是应该有有水的桶装水吗
嗯,喂,你好,我问一下这个矿泉水有没有啊
嗯,请帮我把早餐送到房间来
嗯,我要两只矿泉水
二幺幺零需要开房间门
喂,你好,那个二幺幺零刚才出来取才能石门锁上了,让人把开吧
啊,我我说早餐不是,是上来吗
喂喂
嗯,我说话房间
我要换个房间
帮我送两瓶矿泉水过来
哎,你好,我这边需要早餐
喂,你好
嗯,我这边需要早餐
那是你们有起伏这个东西的
是这样,那个呃,我明天早上来早餐,你帮我之前说是九点钟送你帮我打了十点可以吗
我要订早餐
那个幺七零八的外卖送了吗
发胶
嗯,你们这有发胶吗
好久
喂,嗯,我哪个剃须刀过来
打电话什么是
哎,一个
那个送点的,送的那个牙刷牙膏上来楼
喂?喂
嗯,我我想那个幺五零九,我想送两份早餐
嗯,帮我点个餐
请帮我送两瓶矿泉水
啊点餐
也抽纸已经用完了送两包抽纸
你好,请给四要二房送,送两包抽纸两瓶水,谢谢
用完了
那个最迟什么时间退房啊
啊,你好,那个房间里边那个洗手池的那个水很小
帮我送件成人,寓意
成人浴衣,就是那个睡衣
我说苹果充电线,没有啦
我问一下啊,首先的我想要一个苹果的充电器
苹果的
那个充电线过来就可以了啊
一个枕头
一个水杯
全名侍者
菊花
针线包一个
哎,你好,我问一下这边是几点退房
我和钱财
啊,你们七点五这没有纸巾了,能复原吗
房间的网络是不是有问题
房间的网络是不是有问题啊
嗯,你好,那个苹果充电线可以快点拿过来吗,谢谢
香皂
你好,我想订下明天早餐
嗯
嗯,早餐可提供吗?早餐
嗯,暂时不需要,谢谢
我想问一下那个空
唉,那个早餐不是送上来吗
WiFi
嗯,我需要餐巾纸
我要变化早餐
电话线早餐
唉,你好,唉,要八幺零帮我送两瓶水,好吧
能帮我送两瓶矿泉水来吗
你好,请问你那边有尺子吗
啊,你是人工还是智能语音
嗯,你好,我想点个餐点一个台湾卤肉泛套餐
退房
酒店提供免费矿泉水吗
早餐吗
我需要一个手提袋,还有一双筷子
帮我拿那个两条苹果的数据线过来
没有快点
两瓶
嗯,我想问一下,现在可是没有瓶装水供应的是吧
帮我
要一把咖啡
剃须刀
嗯,帮我幺八零八拿一个
唉,你那个帮我拿两个那个浴袍上来
酒店提供咖啡吗
唉喂
不是说在从为啥我什么这个我只用完了都不再提供一点
我你,我请问下能服务那个幺七零六房间提供一些纸巾
嗯,WiFi怎么连接啊
什么
我想问一下是不会弄错,房间了,我订的是豪华大床双床房,这反这么小不限啊
卫生在
卫生袋
我要一个袋子
给送点餐巾纸,垃圾袋
送点,餐巾纸过来
呃,空调不制冷
哎,我这要要早餐,你快一点
我也没有,嗯
我要早餐幺五幺五零八房间
我这个早上怎么还没送过来啊
送两瓶水
好O
告诉我WiFi密码
那个我想问一下,我这插座没电
嗯,再送一个充电器
我一条浴巾
苹果充电线
送两双拖鞋
充电器吗
呃,你送一根华为的,送一根安卓的吧,嗯
安卓的
有的送两瓶水上的
啊,你好,那个二零零二帮我送两支矿泉水上来好吗?二零零二
我们唉我们打前台是多少
不是那个房七零五没有纸巾了,能送的纸巾吗
卫生纸
啊,送点纸成
直接
喂wife密码
送餐
平台
帮我拿个充电器上来苹果的
你就让他送就行
我房间需要饮用水
我要幺零七房间没有水
我要我要早餐,你这不是钱的吗
我要找她
额,我要早餐
送两瓶,瓶装水
请问一下WiFi密码
垃圾袋
你电话
嗯,验证吗?它是wife名字什么
这个wife多少
你好,呃房间的wifi连不上
你,我想改一下明天早上送早餐的时间
改一下,明天早上送餐的时间
嗯,送早餐
你好,我想问一下这个电视怎么能调试网络电视了
你要帮我送个红酒红酒开瓶器
嗯,帮我送一件年历比较墙的胶布到二三幺二
帮我送一点年历比较墙的胶布到二三幺二
有没动静啊
请用话筒说出你的啥呀
我要两个决明子枕
薰衣草枕
这两个薰衣草枕
安卓充电线
帮我拿条充电线上来在二零幺八
无线密码
额,我需一瓶水
七点
我想订下明天早餐
喂,我们是早餐送过来了,没有
酒店有矿泉水吗
嗯,你好,我那个餐室幺五幺七房后的,然后里面有两根冰激凌很久没有送上来,我怕掉了
对
开不房间
打扫房间
哎,你好,我记得不是说早餐送到房间来么
嗯,我是不是外卖到了,是你帮我送上来
我都外卖是不是已经在前台那里了,你是不是帮我送上来
两三个吧
八零五需要垃圾袋
那个八零五换一下垃圾箱,好吗
额,需要
洗衣机
现在
早餐在几楼
早餐在哪里吃
尽快送两瓶工装瓶装水
要两瓶水瓶装水
唉,请问是大厅吗
给我送两瓶水
一酒店的地址
请问咱们这个酒店的通讯地址是什么
啊,就是你们下面有有那个安卓的充电器啊
额,你这里无线那个有一个吗,就是不用密码的这个一个无线啊
我借一下餐盘
无线网
嗯,地板要西城
就是把床单被套整套换了最后在在要西城地板机场
我转前台,我要换床单,二四幺六
嗯,环保袋
我要刮胡刀
拿多一个袋子
袋子
不要了
两包制止没
咖啡
我要两杯咖啡,我要两包咖啡两包自己漠河一包
还要两包咖啡糖
哎,帮忙叫一下那个打扫房间
两个
唉,这哪个房间啊
送牙刷
帮我拿两件浴袍
快一点
给我拿个地区拿过来啊,那么久还没过来
我要两个荞麦枕和一个指甲钱
指甲钳
唉喂,你好,帮我送个早餐过来
你好,我需要洗那个牙刷
牙刷
你好,我想订一下,明天的早餐
转接到按楼层厅
哎,你好,那个我刚到这个房间是七二零,我看这个靠路边有点吵,能不能我也没进去,就是没没动的房间,我想一个那边西边的房间
我想换房间
我要换房间
帮我拿两个牙具和颐和一个梳子
嗯,帮我送一下早餐
嗯,可以了啊,就是苹果的手机充电线,充电出现
请帮忙送一个苹果手机的充电器
喂喂,请问WiFi密码是多少
餐巾纸,用完了
嗯,那个帮忙早餐送一下
喂,你好,这边最晚几点退房
不要送两瓶水,今天两瓶水,没送
再送两瓶
是的
送四瓶水
帮我取个刮胡刀,谢谢
你
嗯,这哪个酒店啊
那个我们要八零幺的那个早餐能不能早点送过来啊
你好,我有那个外卖在前台,你帮我送上来
嗯,请问有苹果充电线吗 | 打扫去中括号 | 2020-05-01T13:40:16.000Z |
|
Regex completa per il CF. Controllo anche i casi di omocodia. | ^(?:[A-Z][AEIOU][AEIOUX]|[B-DF-HJ-NP-TV-Z]{2}[A-Z]){2}(?:[\dLMNP-V]{2}(?:[A-EHLMPR-T](?:[04LQ][1-9MNP-V]|[15MR][\dLMNP-V]|[26NS][0-8LMNP-U])|[DHPS][37PT][0L]|[ACELMRT][37PT][01LM]|[AC-EHLMPR-T][26NS][9V])|(?:[02468LNQSU][048LQU]|[13579MPRTV][26NS])B[26NS][9V])(?:[A-MZ][1-9MNP-V][\dLMNP-V]{2}|[A-M][0L](?:[1-9MNP-V][\dLMNP-V]|[0L][1-9MNP-V]))[A-Z]$ | Codice fiscale italiano | 2021-08-24T14:08:51.000Z |
|
^[0031]{4}[0-9]{8}[^a-z]|^[\+][0-9]{10}[^a-z]|^[06]{2}[\-][0-9]{7}[^a-z]|^[0-9]{3}[\-][0-9]{6}[^a-z]|^[0]{1}[0-9]{8}[^a-z] | 077-3820843 | Telefoonnummer | 2016-04-07T20:56:32.000Z |
|
^https?:\/\/.+(:[0-9]{4,5})?\/.*$ | https://google.de:9000/kasdf | URL with Port | 2016-04-08T08:47:43.000Z |
|
#Line Address
((?<=
^[0-9a-fA-F]{6}\:
)
|
(?<=
^[0-9a-fA-F]{2}\/[0-9a-fA-F]{4}\:
)
)
#Space
\s+
#Pre-Bytes stuff
.*?
[0-9a-fA-F]+
[\+\-\!\@\*\#\^x\$\s]*
(?(?=
\t
)
(\t)
|
(?(?=
[ ]{2})[ ]{2}|(?=($|\n)))) | []
C10000: FFFF FFFF
C10004: FFFF FFFF
C1/0000: FFFF FFFF
C1/0004: FFFF FFFF ;
C1/0008: - FFFF FFFF ADC #
C0/FB6A: - 69 1000 +1 XBA #$0010
C0/FB6A: -- 6 9 1 0 0 0 ++1 ADC #$0010
[ffffffffffffffffff
[Initial jump in this bank?]
C1/000C: 204000 JSR $0040
C1/000F: 6B RTL
[Jumped to by Reset code $8008]
[RESET_VECTOR]
C1/0010: 5CE54CC1 JMP $C14CE5 [Jump to Reset 1-1]
[]
C1/0014: 20304C + JSR $4C30 [Jump to Reset 1-2]
C1/0017: + 6B - RTL
C1/0018: 5CFA4CC1 JMP $C14CFA
[ffffffffffff | Disassembly Line Bytes | 2016-06-14T12:48:39.000Z |
|
\b(?!\S*cat)([a-z])*\b | cvdfd | 2014-12-10T15:17:01.000Z |
||
^I specified a (?:(valid X estimation request)|(valid X cancel estimation)|(valid X accept estimation)|(valid X refuse estimation)|(valid Y estimation request)) JSON as body$ | // Should match :
I specified a valid X estimation request JSON as body
I specified a valid X cancel estimation JSON as body
I specified a valid X accept estimation JSON as body
I specified a valid X refuse estimation JSON as body
I specified a valid Y estimation request JSON as body | Some OR regex | 2015-05-15T16:25:56.000Z |
|
^(?i)(join\\W)|(join$) | j | java | 2015-12-08T07:27:04.000Z |
|
((http(s)?[:\/\/]{1,}))?([a-z0-9\-]{1,}[.])([a-z0-9\-]{1,}[.])?([a-z]{2,3})(.{1,})? | http://example.com
http://subdom.example.com
http://example.uk
https://example.com
https://subdom.example.com
https://example.uk
http://example.com/?query=butt
http://subdom.example.com/?query=butt
http://example.uk/?query=butt
https://example.com/?query=butt
https://subdom.example.com/?query=butt
https://example.uk/?query=butr
tasdfa .ss | Match URL | 2016-03-05T22:46:30.000Z |
|
\S*_((?!en)\S{2,3}(-\S{2,3})?)\.properties | # Don't match default language files
labels_en.properties
labels_en-EN.properties
# Match other languages files
labels_fr.properties
labels_fr-FR.properties
| Toy labels regex | 2017-11-03T10:23:48.000Z |
|
ERROR: type should be string, got "https:\\/\\/www\\.chytryhonza\\.cz\\/(hypoteka|americka-hypoteka|refinancovani-hypoteky).*" | https://www.chytryhonza.cz/hypotecni-kalkulacka?v=iTBDcj1Zi0eb4mSEPe3k3CNWhpqvaZmAyRTmCq%2Be1j085RJkWNTwLmXX8mRWLjvUDUxgpyVpx0VS0q08qi%2FTIvRBMeiXW4w9fK%2F8cQg4wXlsDubtLGXAdytQCNC2LTfF
https://www.chytryhonza.cz/hypotecni-kalkulacka?v=
https://www.chytryhonza.cz/srovnavac
https://www.chytryhonza.cz/srovnavac-zivotniho-pojisteni?v=dd
https://www.chytryhonza.cz/srovnavac-zivotniho-pojisteni?v=1qC3j5r%2BHim0K68IAcodRMrYv6ikx0NneJC39H2oOdl2H8QZ5DL9glGwRtkQSV%2BhVT0c%2B95YLTSmA4BDugvpUQkWIDUmTmv4rcg1t78EMid9jhDOoHh%2BXxRZAxYBGKkB
https://www.chytryhonza.cz/hypoteka
https://www.chytryhonza.cz/hypoteka#aca30160bd78b
https://www.chytryhonza.cz/americka-hypoteka
https://www.chytryhonza.cz/refinancovani-hypoteky
https://www.chytryhonza.cz/zivot
| hypo-LP | 2019-07-25T09:24:45.000Z |
|
^(?!\.)(?!.*\.$)(?!.*?\.\.)([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+)@((?!\.)(?!.*\.$)[a-zA-Z0-9._-]+.[a-zA-Z]{2,6})$ | Email addresses | 2018-01-10T16:40:19.000Z |
||
.+ | .../..hjnukkm+++==== | more characters | 2020-04-12T18:38:29.000Z |
|
Capture an entire number with fractions and unary (-) symbol. | [-]?\d+(\.\d+)? | 1
-1
1
12
-12
12.5
-12.5 | Number Regex | 2017-08-11T02:54:21.000Z |
\<.+?\|(?<login>.*?)\>\s+(?<message>.+) | @<sadf|jan.kowalski10> Thanks for something | Parsing Kudos slack command | 2020-05-13T21:31:40.000Z |
|
15位 | ^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$ | 校验身份证号码 | 2017-06-22T04:09:29.000Z |
|
foo - (?!AggregateTopic)(.*) - coda | foo - AggregateTopic - coda
foo - NonWhitelistedTopic - coda
foo - Foo - coda
foo - Bar - coda | not a string | 2016-09-13T15:25:25.000Z |
|
{\w+}+(,{\w+})*$ | {a},{bb},{123} | 小數點前後數字數量 | 2015-08-26T02:21:56.000Z |
|
[a-zA-Z]{2}\d{9} | OH448831234 | ABC# | 2015-12-29T17:18:20.000Z |
|
Check if the given string is a private address | (?(DEFINE)
(?<bit>[0-1][0-9]{1,2}|2[0-4][0-9]|25[0-5])
)
(
10\.
((?&bit)\.){2}((?&bit))
)|
(
172\.
(
(1[6-9])|
(2[0-9])|
(3[0-6])
)
\.
((?&bit)\.?+){2}
)|
(
192\.168\.
((?&bit)\.?+){2}
) | 172.31.253.126 | IPv4 private network address | 2014-11-14T08:55:31.000Z |
Based on information provided by European Commission (source: http://ec.europa.eu/taxation_customs/vies/technicalInformation.html)
"The European Commission cannot divulge these algorithms. However, the structure of VAT identification numbers is given and used here for the testing of the validations"
based on https://regex101.com/library/Pb0sAf
| (?:(AT)\s*(U\d{8}))|(?:(BE)\s*(0?\d{*}))|(?:(CZ)\s*(\d{8,10}))|(?:(DE)\s*(\d{9}))|(?:(CY)\s*(\d{8}[A-Z]))|(?:(DK)\s*(\d{8}))|(?:(EE)\s*(\d{9}))|(?:(GR)\s*(\d{9}))|(?:(ES|NIF:?)\s*([0-9A-Z]\d{7}[0-9A-Z]))|(?:(FI)\s*(\d{8}))|(?:(FR)\s*([0-9A-Z]{2}\d{9}))|(?:(GB)\s*((\d{9}|\d{12})~(GD|HA)\d{3}))|(?:(HU)\s*(\d{8}))|(?:(IE)\s*(\d[A-Z0-9\\+\\*]\d{5}[A-Z]))|(?:(IT)\s*(\d{11}))|(?:(LT)\s*((\d{9}|\d{12})))|(?:(LU)\s*(\d{8}))|(?:(LV)\s*(\d{11}))|(?:(MT)\s*(\d{8}))|(?:(NL)\s*(\d{9}B\d{2}))|(?:(PL)\s*(\d{10}))|(?:(PT)\s*(\d{9}))|(?:(SE)\s*(\d{12}))|(?:(SI)\s*(\d{8}))|(?:(SK)\s*(\d{10}))|(?:\D|^)(\d{11})(?:\D|$)|(?:(CHE)(-|\s*)(\d{3}\.\d{3}\.\d{3}))|(?:(SM)\s*(\d{5})) | The European Commission cannot divulge these algorithms. However, the structure of VAT identification numbers is given in the table below:
(source:http://ec.europa.eu/taxation_customs/vies/technicalInformation.html)
Member State Structure Format*
AT-Austria ATU99999999 1 block of 9 characters
BE-Belgium BE0999999999 1 block of 10 digits
??? BG-Bulgaria BG999999999 or BG9999999999
1 block of 9 digits or 1 block of 10 digits
CY-Cyprus CY99999999L 1 block of 9 characters
CZ-Czech Republic CZ99999999 or CZ999999999 or CZ9999999999
1 block of either 8, 9 or 10 digits
DE-Germany DE999999999 1 block of 9 digits
DK-Denmark DK99 99 99 99 4 blocks of 2 digits
EE-Estonia EE999999999 1 block of 9 digits
EL-Greece EL999999999 1 block of 9 digits
ES-Spain ESX9999999X4 1 block of 9 characters
FI-Finland FI99999999 1 block of 8 digits
FR-France FRXX999999999 1 block of 2 charact and 9 digits
GB-United Kingdom GB999 9999 99 or GB999 9999 99 9995 or
GBGD9996 or GBHA9997 1 block of 3 digits, 1 block of 4 digits and 1 block of 2 digits; or the above followed by a block of 3 digits; or 1 block of 5 characters
???? HR-Croatia HR999999999 99 1 block of 11 digits
HU-Hungary HU99999999 1 block of 8 digits
??? IE-Ireland IE9S99999L IE999999 1 block of 8 or 9 characters
IT-Italy IT99999999999 1 block of 11 digits
??? LT-Lithuania LT999999999 or LT999999999999 1 block of 9 digits, or 1 block of 12 digits
LU-Luxembourg LU99999999 1 block of 8 digits
LV-Latvia LV99999999999 1 block of 11 digits
MT-Malta MT99999999 1 block of 8 digits
NL-The Netherlands NL999999999B998 1 block of 12 characters
PL-Poland PL9999999999 1 block of 10 digits
PT-Portugal PT999999999 1 block of 9 digits
RO-Romania RO999999999 1 block of minimum 2 digits and max 10
SE-Sweden SE999999999999 1 block of 12 digits
SI-Slovenia SI99999999 1 block of 8 digits
SK-Slovakia SK9999999999 1 block of 10 digits
Remarks:
*: Format excludes 2 letter alpha prefix
9: A digit
X: A letter or a digit
S: A letter; a digit; "+" or "*"
L: A letter
Notes:
1: The 1st position following the prefix is always "U".
2: The first digit following the prefix is always zero ('0').
3: The (new) 10-digit format is the result of adding a leading zero to the (old) 9-digit format.
4: The first and last characters may be alpha or numeric; but they may not both be numeric.
5: Identifies branch traders.
6: Identifies Government Departments.
7: Identifies Health Authorities.
8: The 10th position following the prefix is always "B".
9: All letters are case sensitive. Please follow the exact syntax of the VAT number shown.
| Check VAT ID | 2018-05-31T17:51:06.000Z |
Lets modify a route dinamically from any word that starts with ':' until the next slash | (?=:)(.*?)(?=\/|$) | articles/:id
articles/:id/edit/:subDetailId | Replace :parameters on route navigation | 2019-08-16T18:51:12.000Z |
Matches valid minecraft usernames, one per line | ^[a-zA-Z0-9_]{2,16}$ | Steve
Notch
H3robr1ne
Hero-brine
Lie$ | Minecraft Username Matcher | 2016-08-14T17:19:17.000Z |
Numéros de téléphone avec ou sans parenthèses en anglais | \(?\d{3}\)?-\d{3}-\d{4} | 123-456-7890
(123)-456-7890
(abc)-123-4567
| Numéros téléphone corrects (anglais) | 2015-09-07T21:43:35.000Z |
\<\<(.*?)\>\> | <<sdjsd>> asd<<sad>> sadsds<<asd sdsad>>svvcccv | text beetween <<>> | 2015-09-04T13:32:02.000Z |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.