description
stringlengths
0
8.24k
regex
stringlengths
1
26.3k
text
stringlengths
0
2.47M
title
stringlengths
1
150
created_at
stringlengths
24
24
This PHP regex will match any string that contains Indic character combinations known to crash many iOS applications as of 11.2.5 and certain macOS combinations as of 10.13.3. The crash occurs in CoreText. # Notes # This regex will only work if you use the `x` and `u` modifiers. Example: "{regex-goes-here}xu" Whil...
(?# # Adapted for PHP by Paul Buonopane of NamePros https://www.namepros.com/ # Based heavily on the following works: # - https://manishearth.github.io/blog/2018/02/15/picking-apart-the-crashing-ios-string/ # - https://github.com/hackbunny/viramarama # # This PHP regex will match any string that contains ...
iOS/macOS Indic character CoreText crash exploit detection 2018-02-12
2018-02-17T02:59:35.000Z
(?:4\s*(?:\d\s*){3}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4})|[25]\s*[1-7]\s*(?:\d\s*){2}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}|6\s*(?:0\s*1\s*1|5\s*[0-9]\s*[0-9])[- ]*(?:\d\s*){4}[- ]*(?:\d\s*){4}[- ]*(\d\s*){4}|3\s*[47]\s*(?:\d\s*){2}[- ]*(?:\d\s*){6}[- ]*(?:\d\s*){5}|3\s*(?:0\s*[0-5]|[68]\s*[0...
cc2
2019-03-17T12:14:27.000Z
(?<ValueR>([^\w])([\d])+([,|.])(\d+\s?)([к|М|Г|м])?([к])?(Ом)([\s]))
SMD 0603 q49,91111111 Ом ±1% 0,1 Вт CR0603-FX-49R9ELF SMD 0603 9123d123,0 кОм ± 1% 0,1Вт CR0603-FX-49R9ELF SMD 0603 49,9Ом ±1% 0,1 Вт CR0603-FX-49R9ELF SMD 0603 49,9ккОм ± 1% 0,1Вт CR0603-FX-49R9ELF SMD 0603 9.99Ом ±1% 0,1 Вт CR0603-FX-49R9ELF SMD 0603 9.99кОм ± 1% 0,1Вт CR0603-FX-49R9ELF SMD 0603 49,9 МОм ±1% 0.1 В...
Поиск Сопротивление
2020-11-26T20:32:21.000Z
^ # Validate the basic structure (?=\d{1,4}\/\d{1,4}\/\d{1,4}$) # The below subexpression matches a leap year # This will be useful later when checking Feb 29th (?<leap>0*$|\d*(?:[13579][26]|(?:\b|[02468])[048])(?:00|(?<!00))$){0} # Match and capture a month, saving a 30-day month or Feb for later reference 0*(?<mon...
1/25/2018 3/11/2119 6/8/224 6/54/1996 2/29/2004 2/29/1900
Match a full date m/d/yyyy
2018-10-25T06:11:23.000Z
Intended as a first pass on already word wrapped text, to remove wrap newlines while preserving likely intentional ones. Not *especially* robust.
(?<![\.\n]) ?\n(?!\n)
Below, we present an introduction to advanced. regular expressions, with eight commonly used concepts and examples. Each example outlines a simple way to match patterns in complex strings. If you do not yet have experience with basic regular expressions, have a look at this article to get started. The syntax used her...
Remove single, but not repeating newlines, except immediately after a period. (xiTWA2/1)
2021-09-12T14:16:04.000Z
commitlint to cz-emoji-conventional
^(?::\w*:|(?:(\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])))\s(?<type>\w*)(?:\((?<scope>.*)\))?!?:\s(?<subject>(?:(?!#).)*(?:(?!\s).))(?:\s\(?(?<ticket>#\d*)\)?)?$
✨ feat: add signup pages from (#11) 🧹 feat: add signup pages from (#11) 🐛 feat: add signup pages from (#11) 📝 feat: add signup pages from (#11) 💎 feat: add signup pages from (#11) 📈 feat: add signup pages from (#11) 🧪 feat: add signup pages from (#11) 📦 feat: add signup pages from (#11) ⏪️ feat: add signup pages...
commitlint gitmoji
2023-02-26T00:05:00.000Z
One liner
(?:src|href)=[\'"](?!http|https|//)\K/?([^\'"]*)
<img src="/"> <a href="/contact-us">Contact Us</a> <a href="contact-us">Contact Us</a> <img src="/datas/users/32-img.jpg" /> <img src="datas/users/32-img.jpg" /> <a href="Https://abs/url/doc.xml" />RSS</a> <a href='http://relative/url/'>Note the Single Quote</a> <img src="//site.com/protocol-relative-img.jpg" /> <img ...
Change all URLs to absolute
2020-08-09T10:19:07.000Z
(<!\[CDATA\[)|(\]\]>)
Remove beginning and end of CDATA tags
2019-07-09T16:05:57.000Z
search text matching any word
\W(banana|lemon|mango|pinea|200|assigned|1)
asdasd a PINEAPPLE 200 20 great oaks great oaks blvd 22 11 1 2 apineapple varun nikhin
search text matching any word
2015-07-10T01:34:56.000Z
For use in testing SpellChecker(MHApps)
(text|simple)(?![^<]*>|[^<>]*<\/)
This is simple html text <span class='simple'>simple simple text text</span> text
Spell Checker Test
2015-09-09T16:27:35.000Z
Matches German nouns with "artikels"
(der|die|das) [A-Z][a-z]+
German nouns
2016-04-09T13:41:48.000Z
username
^[a-z0-9][a-z0-9-]+$
Code Review
2015-01-13T20:23:17.000Z
Atomic Groups are non-capturing and once a match is made will exit the atomic group and throw away all backtracks. Use Atomic Groups for optimising performance. A non-atomic expression \b(foobar|foot|foo)\b and a test string of foots will: match foo of foobar => fail and backtrack to the 2nd alternative match foot of...
\b(?>foobar|foot|foo)\b
foots
Atomic group
2016-03-06T15:59:34.000Z
Color RGBA in shape : 255, 255, 255, 255 ',' or ';' are accepted
((?<!\d|\.)([0-9]?[0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?!\d|\.) *[,;] *){3}(?<!\d|\.)([0-9]?[0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?!\d|\.)
RGBA: (0-255) 204, 128, 128, 255 RGBA: (0-255) 4, 128, 128, 255 RGBA: (0-255) 204, 18, 928, 255 RGBA: (0-255) 304, 1, 18, 255 RGBA: (0-255) 204, 28, 128, 25, 25, 255, 152, 12 RGBA: (0-255) 204, 128, 8, 5 RGBA: (0-255) 204, 128, 128, 355 RGBA: (0-255) 204, 128, 128, 265 RGBA: (0-255) 204, 128, 128, 256 bonjour, 18, 928...
RGBA [0;255]
2015-11-16T21:20:53.000Z
Get path (windows style) from any type of text (error message, e-mail corps ...), quoted or not. ___THIS IS THE SINGLE LINE VERSION !___ If you want understand how it work or edit it, go https://regex101.com/r/7o2fyy - Relative path are not supported - The goal is to catch what "Look like" a path. See the limitations...
(?<opening>\b(?<montage>[a-zA-Z]:[\/\\])|[\/\\][\/\\](?<!http:\/\/)(?<!https:\/\/)(?>[?.][\/\\](?:[^\/\\<>:"|?\n\r ]+[\/\\])?(?&montage)?|(?!(?&montage)))|%\w+%[\/\\]?)(?:[^\/\\<>:"|?\n\r ,'][^\/\\<>:"|?\n\r]*(?<![ ,'])[\/\\])*(?:(?=[^\/\\<>:"'|?\n\r;, ])(?:(?:[^\/\\<>:"|?\n\r;, .](?: (?=[\w\-]))?(?:\*(?!= ))?(?!(?&mon...
THIS IS SINGLE LINE VERSION to understand and edit it, go https://regex101.com/r/7o2fyy C:/testOk\dot.Dirname/.nameFileBeginByDot first space after a dot in file name stop the match C:/testOk\_.._AsDirName/../file name.ext1.ext2 first space after a dot stop the match start text don't match C:/testOk\lastDir Or FileNam...
Get path from any text
2023-01-31T14:38:55.000Z
[0-9]+([\.,]?[0-9]{1,2})?+[$€]
Un forfait de 2.99€ HT/an
Extracting a price from a string
2018-05-16T10:45:53.000Z
https://stackoverflow.com/questions/7967075/regex-for-not-empty-and-not-whitespace
(?!^$)([^\s])
Feature/ds
NotEmpty
2023-05-10T16:06:32.000Z
Find zoom links in text
https:\/\/[\w-]*\.?zoom.us\/(j|my)\/[\d\w?=-]+
https://yandex.zoom.us/my/somename https://uni-hamburg.zoom.us/j/71047121108 https://zoom.us/j/9691388953?pwd=U2VnRTg5VDdzRW0xSHNlZXM4UFlKQT09 https://mvideoeldorado-ru.zoom.us/j/12317847439?pwd=UHM1bHdPZ2hPdmVrZlNtV2RMdXc5UT09 https://yandex.zoom.us/j/12303260396 https://us06web.zoom.us/j/12365249269?pwd=SFF3aTNyZ1dPS...
Detect zoom meeting links
2022-06-10T07:18:09.000Z
I'm logged in as (?:a\s|an\s)(?:"([^"]*)"\s)?(?:user|customer)\s(?:(?:for[\sa\s|\san\s]?)(?:"([^"]*)"\s))?
Given I'm logged in as a user for a "password change" to eCommerce Given I'm logged in as an "inactive" user for a "password change" to eCommerce Given I'm logged in as an "inactive" user to eCommerce Given I'm logged in as a "simple" user to eCommerce Given I'm logged in as a user in a "shared" account to eCommerce Gi...
Twist Login
2019-06-13T13:41:55.000Z
.*(https:\/\/cloud\.saikoanimes\.net\/.*)" c.*
<a href="https://cloud.saikoanimes.net/11Yu" class="btn-sa" target="blank">01</a> <a href="https://cloud.saikoanimes.net/BXz" class="btn-sa" target="blank">02</a> <a href="https://cloud.saikoanimes.net/BXv" class="btn-sa" target="blank">03</a> <a href="ht...
Saiko
2020-10-10T01:07:50.000Z
<tr>\n\s*<td width="70"><strong>Released:<\/strong><\/td>\n\s*<td>(.*)<\/td>\n\s*<\/tr>\n\s*<tr>\n\s*<td width="70"><strong>Runtime:<\/strong><\/td>\n\s*<td>(.*)<\/td>\n\s*<\/tr>\n\s*<tr>\n\s*<td width="70"><strong>Genres:<\/strong><\/td>\n\s*<td><span class="movie_info_genres"><a\s[^<>]*>([^<>]*)<\/a>
<tr> <td width="70"><strong>Released:</strong></td> <td>July 25, 2014</td> </tr> <tr> <td width="70"><strong>Runtime:</strong></td> <td>90 mins </td> </tr> <tr> <td width="70"><strong>Genres:</strong></td> <td><span class="movie_info_genres"><a href="/?genre=Action">Ac...
Reg124
2014-10-21T07:45:54.000Z
tester\|\|\|\|(.*?)~
tester||||123123+++123+++123123~~~~
stl
2016-02-16T16:55:11.000Z
Grabs all HTML <img> tags
<img[^>]*?src\s*=\s*[""']?([^'"" >]+?)[ '""][^>]*?>
Hello World.. <img src="a1.png" width="100" height="50" /> <img src="a1.png" width="100" height="50"> <img style="width:100px;height:50px" src="a1.png" />
HTML img
2015-10-17T05:48:00.000Z
extract node values from xml string
<suburb>(.+?)<\/suburb>
<primaryAddress> <addressLine>280 Flinders Mall</addressLine> <geoCodeGranularity>PROPERTY</geoCodeGranularity> <latitude>-19.261365</latitude> <longitude>146.815585</longitude> <postcode>4810</postcode> <state>QLD</state> <suburb>Townsville</suburb> <typ...
extract node values from xml string
2016-03-17T07:13:26.000Z
PTN (Portable Tak Notation) is a format to transport the history of a played game of Tak. The body of PTN files consists of ordered lines of moves, each consisting of one or two plies. This pattern parses PTN move lines and groups interesting information in useful groups.
(?<=^|\n)(?P<spacer>[[:blank:]]*(?:\{[^{]*(?&spacer)[^}]*\}[[:blank:]]*)[[:blank:]]*|[[:blank:]]+)(\d+)\.(?&spacer)(?:([1-8])?([a-h])([1-8])([+-<>])([1-8]*)|([FSC])?([a-h])([1-8]))(?:(?&spacer)(?:([1-8])?([a-h])([1-8])([+-<>])([1-8]*)|([FSC])?([a-h])([1-8])))?(?&spacer)?(?=$|\n)
1. a1 e1 2. a2 e2 3. a3 b4 4. a4 a5 5. Cb5 b4< {~6. b4 Cb3~} 6. b4 Se3
PTN Ply Matching
2016-09-22T14:36:07.000Z
([^,]*,){6}([^,]*)
547-18-5874,519480195,AE09430101,160, ,fre fdds,0065.00
count occurence of comma
2015-08-31T21:52:20.000Z
This pcre style regex tests for valid URLs capturing the whole address. It will capture http and https only. Compatible with multiple sub-domains and raw IPV4 addresses, as well as paths, queries, and parameters. See below for examples: Will match these valid URLS: https://www.example.com/foo/?bar=baz&inga=42&quux ht...
(https?\:\/\/(?:[[:alnum:]]+\.)?[[:alnum:]]+\.(?:com|net|org)\/\S*)|(https?\:\/\/(?:\d{1,3}\.){3}\d{1,3}\/?(?:\:\d{0,6})?\/?)
Screen 0: minimum 320 x 200, current 3520 x 1080, maximum 8192 x 8192 VGA-0 connected 1600x900+1920+180 (normal left inverted right x axis y axis) 443mm x 249mm 1600x900 60.00*+ 75.00 1280x1024 75.02 70.00 60.02 1440x900 59.89 1280x800 59.81 1152x864 75.00 1280...
Capturing URL tester
2018-10-26T07:02:01.000Z
A collection of dates used for the Data Science with Python course
([a-zA-Z]+)[\s\-\.]+(\d{1,2})[\s\-\,]+(\d{4})
04/20/2009; 04/20/09; 4/3/09 7/8/71 Mar-20-2009; Mar 20, 2009; March 20, 2009; Mar. 20, 2009; Mar 20 2009 20 Mar 2009; 20 March 2009; 20 Mar. 2009; 20 March, 2009 Mar 20th, 2009; Mar 21st, 2009; Mar 22nd, 2009 Feb 2009; Sep 2009; Oct 2010 6/2008; 12/2009 6/1998 Primary Care Doctor: 2009; 2010 (4/10/71)Score-1Audit C S...
Date tests
2018-04-18T00:27:49.000Z
find dart relative import path
import\s+['\"](?!package:)(?<importPath>.*?)['\"]
import "package:test/model/test/test.dart" import "model/test/test.dart" import "../test/test.dart"
Dart relative import
2023-07-11T13:37:11.000Z
\* \[(.+)\|(.+)\]
Screwturn update links
2019-05-24T08:43:39.000Z
This will pluck out any do_action or apply_filters name in your code. Useful if you want to see what actions or filters have been added or deprecated between codebases, etc.
((?<!gf_)apply_filters|do_action).*?\( ?('|")(.*?)('|").*
apply_filters( 'gform_export_separator', ',', $form_id ); do_action( 'gform_export_separator', ',', $form_id );
do_action and apply_filters name getter for Wordpress
2022-08-23T21:13:43.000Z
(?<protocol>s?ftp):\/\/(?<user>[^@\s]+)@(?<host>[^\?\s:]+)(?::(?<port>[0-9]+))?(?:\?(?<password>.+))?
sftp://[email protected]:22?c0n|\|3ctEc1
SFTP with username and optional port & password
2014-04-16T20:03:00.000Z
relative to absolute
^(.*)((<img|<script|<link)(.*) (src|href))\=(\"|')(?!cdn|https|https|\/\/)(\/)?(<\/script>|\>)?(.*)$
relative to absolute
2015-01-20T01:16:55.000Z
<Compile Include=".*Document\\.*\r*\n*.*<Link>.*\r*\n*.*<\/Compile>(?!<Compile Include)
<Compile Include="..\..\Document\Source\CommonAssemblyInfo.cs"> <Link>CommonAssemblyInfo.cs</Link> </Compile> <Compile Include="..\..\Reports\ReportsCore\Rendering\Components\InteractiveEventIDs.cs"> <Link>Rendering\InteractiveEventIDs.cs</Link> </Compile> <Compile Include="..\..\SL\Comm...
Find linked files
2018-02-14T07:42:34.000Z
^U(?:AA|AB|BA|BB|CC|CD|EA|FA|GA|HA|IA|JA|AE|CE|GE|FB|JB|GB|HL|IL|JL)[E|U|W]E(?:DN|AZ)\d{2,2}\d\d{8,8}$
UCCUEDN15000003676
ADCE - Validación
2016-06-24T13:26:42.000Z
Validates list of email addresses separated by , or ; and possibly spaces. Capture groups will return only the first and last email captured.
^[,;\s]*(?:([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)(?:\s*[,;]+\s*([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)*)*)+[,;\s]*$
Check delimited email list validity
2016-01-28T21:24:03.000Z
Regex for matching https://mega.nz file and folder URLs. https://github.com/tonikelope/megabasterd/issues/215
ERROR: type should be string, got "https://mega\\.nz/((folder|file)/([^#]+)#(.+)|#(F?)!([^!]+)!(.+))"
https://mega.nz/folder/xxxxxxx#zzzzzzzzzzzzzzzzzzzzzz https://mega.nz/#F!xxxxxxx!zzzzzzzzzzzzzzzzzzzzzz https://mega.nz/file/yyyyyyy#bbbbbbbbbbbbbbbbbbb https://mega.nz/#!yyyyyyy!bbbbbbbbbbbbbbbbbbb
mega.nz files and folders
2021-07-06T17:55:07.000Z
Date (MM DD YYYY)
'/^((0?[1-9]|1[012])[- /.](0?[1-9]|[12][0-9]|3[01])[- /.](19|20)?[0-9]{2})*$/'
MM/DD/YYYY
2016-08-23T17:51:33.000Z
(?<=\[)(?!:scroll:)(?!\d+)(?P<title>[A-Z][\w\s\,\-\?\:\']+)(?=\])
# Functional Programming * [:scroll:](organizing-programs-without-classes.pdf) [Organizing Programs Without Classes](http://cs.au.dk/~hosc/local/LaSC-4-3-pp223-242.pdf) * [:scroll:](functional-programming-with-bananas-lenses-envelops-and-barbed-wire.pdf) [Functional Programming with Bananas, Lenses, Envelopes and Barb...
pwl repo titles
2016-09-12T00:02:12.000Z
\"(\\([[:alpha:]]|[^[:alpha:]])|[^\n\"])*[^\\]\"
"test\b\"" "test\"\b " "test\ newl" "123" " " "quote''''" "test\"\b\000" "" "test \" "test wrong" "test \ "
LUA double-quoted string
2016-02-28T14:48:32.000Z
test
^.*(?=.{8})(?=.*\d)(?=.*[A-Z]).*$
Geron122
test
2016-07-05T15:54:20.000Z
^[a-zA-Z0-9]+[a-zA-Z0-9\._]+@[a-z]+\.[a-z\.]{2,5}$
Mail
2016-08-22T13:41:36.000Z
Finds a page where a bracket is the first char on a line not preceeded by a newline
^(?<!\n)(\[)
[some link](somepage.md) (?<!a)b
Find link-first pages
2016-08-19T17:18:31.000Z
This regex separates numbers with commas taking 0 into account.
(\d{1}\.\d{5,8}|0)\s
0.1766155 0.1658146 0.3464225 0.258326 1.040629 0.3123467 0.7877846 0.1264636 0.1854926 2.235324 0 0.3128409 0.5384811 0.2159374 0.1659985 0.2901815 0.08226276 0.1323811 0.1374549 0.04583898 0.1653796 0.02095086 0.1465107
Add commas between numbers
2022-07-17T20:21:16.000Z
#tagging original form regex
#\[\[(?<name>.+?)\]\]
my first tag is #[[1:hashTag:Rameez]] and second tag is #[[2:hashTag:Rameez2]]. Did I forget to mention that last tag is #[[3:hashTag:Rameez2]]?
#tagging original form regex
2015-10-09T09:29:00.000Z
((房间|卫生)*(收拾|清洁|打扫|清理|整理|换床单|收|卫生)(下|一下)?(房间|卫生|一下)*(垃圾)*)|(换(下|一下)?床单)
打扫房间? 打扫卫生。 帮我打扫下房间。 嗯,打扫房间。 帮我打扫一下房间。 打扫? 清理房间? 嗯,帮我打扫下房间。 嗯,打扫卫生。 帮我打扫房间。 打扫下房间? 房间打扫? 房间打扫一下。 打扫一下房间。 请打扫房间? 我打扫房间? 我要打扫房间? 房间需要打扫。 打扫房间卫生? 打扫服务。 请帮我打扫下房间。 请打扫一下房间。 五零二打扫房间? 呃,打扫房间。 哎,你好,那个我的房间没有打扫。 嗯,帮我打扫房间。 嗯,我要打扫房间。 嗯,房间打扫。 嗯,打扫下房间。 嗯,打扫下,卫生。 您好,打扫卫生。 我打扫下,卫生。 我要打扫房间。 房间打扫卫生。 打扫下卫生。 清洁打扫房间? 现在打扫卫生。 请帮我打扫一下房间。 一会帮...
打扫1.0.0.0502
2020-05-02T13:29:34.000Z
(PT|PL|ES|EN)SVG(A|U)(001|801|992|994)
PLSVGA001 PLSVGA801 PLSVGA992 PLSVGA994 PLSVGU001 PLSVGU801 PLSVGU992 PLSVGU994 PLSVGU002 PLSVGU802 PTSVGA001 PTSVGA801 PTSVGA992 PTSVGA994 PTSVGU001 PTSVGU801 PTSVGU992 PTSVGU994 PTSVGU002 PTSVGU802 ESSVGA001 ESSVGA801 ESSVGA992 ESSVGA994 ESSVGU001 ESSVGU801 ESSVGU992 ESSVGU994 ESSVGU002 ESSVGU802 ENSVGA001 ENSVGA801 ...
Detect certain G Suite SKUs
2020-12-17T20:41:10.000Z
^((ht|f)tp(s?)\:\/\/|~\/|\/)?([\w]+:\w+@)?([a-zA-Z]{1}([\w\-]+\.)+([\w]{2,5}))(:[\d]{1,5})?((\/?\w+\/)+|\/?)(\w+\.[\w]{3,4})?((\?\w+=\w+)?(&\w+=\w+)*)?
http://google.com
url regex
2015-11-25T14:22:50.000Z
league/((?P<league_slug>[\w-]+)(/(?P<season_slug>\d{4}(-\d{4})?))?(/(?P<action_slug>[\w\-\_]+[(-|_)]?[\w]+))?)?(/)?
http://localhost:8010/league http://localhost:8010/league/ http://localhost:8010/league/serie-a http://localhost:8010/league/serie-a/ http://localhost:8010/league/serie-a/2016 http://localhost:8010/league/serie-a/2016/ http://localhost:8010/league/serie-a/2015-2016 http://localhost:8010/league/serie-a/2015-2016/ http:/...
Brasileirão - Url de leagues
2016-03-16T13:10:25.000Z
Does what it says on the tin.
\b[2-7a-z]{16}\.onion\b
2345672345672345.onion.to
Search for .onion domains
2017-07-30T20:27:50.000Z
(\d?)(\d{3})(\d{3})(\d{2})(\d{2})
89132894852
phone
2017-07-22T15:32:41.000Z