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-zA-Z0-9_\.]+$ | iOS Bundle ID | 2018-01-07T22:46:33.000Z |
||
(\x1B7)?(\x9B|\x1B\[)[0-?]*[ -\/]*[@-~](\x1B[=>]\r?)* | show configuration
[?1h=
interfaces {[m
ethernet eth1 {[m
duplex auto[m
address 172.22.108.100/24[m
speed auto[m
smp_affinity auto[m
}[m
loopback lo {[m
}[m
}[m
system {[m
time-zone UTC[m
syslog {[m
}[m
config-management {[m
commit-revisions 20[m
}[m
host-name dm2500[m
[m
BLABLABLA
[K[?1l>admin@dm2500:~$ | Clean Matcher | 2017-07-06T12:06:13.000Z |
|
This allows for both hsl and hsla color patterns to be matched.
`hsla(50.5deg, .531%, .9%, 1.0)`
- The hue can be matched without the word `deg`.
- Hue is from 0-360
- Percentage allows for decimals.
- Percentage is from 0-100%
- Alpha is from 0.0-1.0 | (?(DEFINE)
(?<decimal>(?(int)([.][0-9]+)?|[.][0-9]+))
(?<percentage>
(100|
(?<int>([0-9]|[1-9][0-9]))? # Have integer be optional (0-100 only)
(?P>decimal) # Have decimal required when an integer is not included
)
(?<symbol>%)
)
(?<hue>
(?<int>36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])? # Have integer be optional
(?P>decimal) # Have decimal required when an integer is not included
(?<symbol>\s*deg\s*)?
)
(?<alpha>
(?(alpha),\s*(
1[.]0|
(?<int>0)? # Have integer be optional
(?P>decimal) # Have decimal required when integer is not incldue
)\s*)
)
(?<hsl>\s*(?P>hue)\s*,\s*(?P>percentage)\s*,\s*(?P>percentage)\s*)
)
hsl(?<alpha>a)?\((?P>hsl)(?P>alpha)\) | hsl(10, 50deg, 150%)
HSLA(50.35, .531, 10%)
HSLA(50.5deg, .531%, .9%, 1.0) | HSL(A) Color Matching | 2019-06-13T12:08:57.000Z |
Strict Malaysian NRIC format check
Version 2: Shorten with assertion | ^((\d{2}(?!0229))|([02468][048]|[13579][26])(?=0229))(0[1-9]|1[0-2])(0[1-9]|[12]\d|(?<!02)30|(?<!02|4|6|9|11)31)\-(\d{2})\-(\d{4})$ | Case 1:
Correct
Month with 31days
000131-01-1728
Month with 30days
000430-01-1728
Feb with 28days
010228-01-1728
Feb with 29days
200229-01-1728
Feb with 29days
960229-01-1728
Case 2:
Invalid
Invalid date 32nd
990132-01-1728
Invalid date 31st for april
000431-01-1728
Invalid date 29th for feb in non leap year
010229-01-1728
Invalid date 30th for feb in leap year
200230-01-1728
Invalid month 13th
201301-01-1728
Invalid month 00th
200001-01-1728
Invalid date 00th
200100-01-1728 | Malaysian NRIC | 2023-12-01T04:02:01.000Z |
^P5RNP\d{8}\/\d{5}S\d+\.\d{2}A$ | P5RNP15226660/01981S15851.22A | RNP | 2016-02-24T09:44:21.000Z |
|
(?<day>0[1-9]|1[0-9]|2[0-9]|3[01]).(?<month>0[1-9]|1[012]).(?<year>[0-9]{4})(?: (?<hour>[0-1]\d|2[0-3]):(?<minute>[0-5]\d):(?<second>[0-5]\d)|) | 21.10.2013 | Date time Advanced | 2013-12-03T19:19:21.000Z |
|
phone number without spaces or hyphens
+7YYYXXXXXXX | ^(8|\+7)\d{10}$ | +79261364557
89261364557
9261364557
926136455
892613645577
+792613645577
+89261364557 | phone number russia | 2015-09-24T10:22:34.000Z |
(<a.*href=)["'](.*)["'] | <h2><a href="http://www.google.com/test">Link</a></h2>2014-54-22 22:23 | new anchor | 2016-07-13T07:11:50.000Z |
|
Windows Hostname Validator | ^[A-Z-0-9]{1,15}$ | 1A23 | Windows Hostname Validator | 2017-08-16T02:04:10.000Z |
ddd | <task action="4" id="94(\d\d\d)00(\d\d)" rnpc="\d*" items="(\d*)">(\s)*<release>(\n(\n|.)*?)\{itemid\}((\n|.)*?)<\/release>\n((\s)*?)<\/task> | <task action="4" id="941010001" rnpc="1010001" items="2001">
<release>
<item type="cost" vitality="1" />
<item type="fight" npcid="1010001">
<win>
<item type="aside" content="[color=#ff7e53]你胜利了! [/color]" auto="true" />
<item type="aside" content="你从{rnpc}的尸体里搜出{item}" auto="true" />
<item type="reward" yueli="300" money="100" auto="true">
<item id="{itemid}" num="1" />
</item>
<item type="param" key="fight-1010001" action="update" value="1" />
<item type="area" id="910102" />
</win>
<lose>
<item type="aside" content="[color=#ff7e53]你被{rnpc}打倒在地![/color]" auto="true" />
</lose>
</item>
</release>
</task>
<task action="4" id="941010007" rnpc="1010007" items="2061">
<release>
<item type="cost" vitality="1" />
<item type="fight" npcid="1010007">
<win>
<item type="aside" content="[color=#ff7e53]你胜利了![/color]" auto="true" />
<item type="aside" content="你从{rnpc}的尸体里搜出{item}" auto="true" />
<item type="reward" yueli="300" money="100" auto="true">
<item id="{itemid}" num="1" />
</item>
<item type="param" key="fight-1010007" action="update" value="1" />
<item type="area" id="910108" />
</win>
<lose>
<item type="aside" content="[color=#ff7e53]你被{rnpc}打倒在地![/color]" auto="true" />
</lose>
</item>
</release>
</task> | ddd | 2018-05-02T03:32:39.000Z |
[^ep]([-\])}|+*×/÷^%]|$) | 123456 | Find Next Number | 2017-06-10T20:42:49.000Z |
|
[P][Z][N][:]["]([0-9]+)["] | [P][Z][N][:]["]([0-9]+)["] | aaaPZN:"123"56bbbb | Capture a tagged Number given in quotes within a free text | 2016-01-25T14:07:37.000Z |
Quick
Dirty
Working | (?<opening>\<\w)|(?<closing>\<?\/\w*\>) | <div Id='topDiv' Class='randomClass'><p Id='topP' Class='randomParagraph'></p>Blah<span></span>lkj<div Id='blahyay' ><div></div></div></div><div /> | Open and Closing Markup tags on Single Line Markup | 2015-12-02T20:03:10.000Z |
odsaihf | ^(?=.*[1-9])\d{0,11}(\.\d{1,4})?$ | shares | 2016-07-19T15:38:57.000Z |
|
\$([a-z])(.*)(,) | ($asset, $location); | replace variable with accessor | 2020-08-07T09:26:13.000Z |
|
[^:]\/\/\w{1,}\. | http://cw1.tw/asdf.jpg
asdfasdf
//cw1.tw/asdf.jpg
//cw1.tw/asasdfdf.jpg | restore protocol | 2016-08-31T03:31:08.000Z |
|
https://(?P<subdomain>(?:[a-z]+\.)+)?newwheel\.com | ERROR: type should be string, got "https://newwheel.com\nhttps://itlab.newwheel.com\nhttps://super.sub.domain.newwheel.com\n" | NewWheel | 2020-07-11T18:31:22.000Z |
|
"Status":("?)(?<cstatus>.*?)("?),.*?"ProblemFlag":("?)(?<probflag>.*?)("?),.*?"IncreasePending":("?)(?<increasePend>.*?)("?),.*?"SafePay":("?)(?<safepay>.*?)("?),"PastDue":("?)(?<pastdue>.*?)("?),"LastPmtAmt":("?)(?<lastpayamt>.*?)("?),"NextPmtAmt":("?)(?<nextpayamt>.*?)("?),"LastPayDate":("?)(?<lastpaydate>.*?)("?),"NextDebitDate":("?)(?<nextdbtdate>.*?)("?),"AddendumDate":("?)(?<addendmdate>.*?)("?)} | {"Status":"AP","ProblemFlag":"0","IncreasePending":"1","SafePay":"1","PastDue":"0","LastPmtAmt":"0.00","NextPmtAmt":"453.00","LastPayDate":"","NextDebitDate":"2021-02-28 00:00:00","AddendumDate":"2021-02-15 00:00:00"} | Credit Guard API | 2021-02-17T20:02:28.000Z |
|
Extract an URL from a text / String.
This one will extract multiple instances | (http|https|ftp):\/\/(\S*) | The test has some url in the last. extract the text starting from https to the end of the string<br></br>https://xyz.com/index.html some text after http://www.ex.com/test.html there are still more text as like ftp://ftp.test.com , which is also matching | Extract URL from a text / String | 2017-04-28T09:29:03.000Z |
Dection of GUID | (\{{0,1}([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}\}{0,1}) | GUID | 2014-12-16T10:56:10.000Z |
|
works great for repeated text lines | ([^\v\t]+)\s*([^\v\t]+)\s*([^\v\t]+)([\v\t]+|Loading transaction details for|[\v\t]+\1){0,3} |
Google
- negative$4.99
Jun 21Automatic Payment
Google
- negative$4.99
Jun 21Automatic Payment
Loading transaction details for
Google
- negative$4.99
Jun 21Automatic Payment
| remove multi-line text matches after matching multi-line pattern | 2020-12-20T18:41:07.000Z |
(?=[^>]*(<|$))gogoro | 1851 1999 1950 1905 2003
<div> <img src=\"http://img.technews.tw/wp-content/uploads/2015/01/gogoro-motor-624x415.jpeg\"> </div>
<div>
<p>台湾新创企业 Gogoro 挟著创办人陆学森、主要投资人尹衍梁,以及 1.5 亿美元募资总额,吸引了产业界的注意。Gogoro 揭橥智慧城市与智慧能源的大方向,但主要专利却集中在电动机车相关领域,电动机车与智慧城市的连结乍看似乎有些牵强,使得产业界相当好奇 Gogoro 为何研发机车却言必称智慧城市?</p>
<div> </div>
<p> </p>
<p>至 CES 2015,谜底揭晓,gogoro 一方面展出设计与功能上均让人惊艳的智慧电动机车,但更重要的战略性意义,则在于搭配机车的电池交换站体系之上,电池交换站体系不仅作为电动机车的后勤系统,更可望借由机车位入口,打进未来智慧城市基础建设的重要领域。</p>
<p>Gogoro 先前对其产品三缄其口,颇有苹果饥饿行销策略之风范,也成功的引起媒体关注与好奇,CES 2015 上正式发表产品后,国内外多家科技媒体均第一时间报导,一时成为产业新闻热门焦点,Gogoro 此次产品发表,较引人注目的主体是智慧电动机车,但实际上,Gogoro 可说是同时发表两种产品,电动机车只是其一,电动机车的电池交换站则可说是另一个关键产品,两者的战略性一样重要。</p>
<img src=\"http://img.technews.tw/wp-content/uploads/2015/01/gogoro-bike.jpeg\">
<h3>革新电动车充电</h3>
<p>Gogoro 电池交换站「GoStation」,系统设计风格相当简洁,大小约如同一般的 ATM 机台,全白机身微微倾斜,上有 8 个容纳电池的槽孔,顶端为智慧面板,旁边可以单体 8 个槽孔为单位扩充,以利在热门地段,能提供更多交换用电池,电池上有绿色提把设计,点缀于白色整体外观之中,可说兼具时尚与实用的风格,这样的设计可说较为偏向消费性电子产品风格,而非传统的汽机车设计风格。</p>
<img src=\"http://img.technews.tw/wp-content/uploads/2015/01/gogoro-charger.jpeg\">
<p>Gogoro 电动机车使用的电池与特斯拉(Tesla)Model S 电动车相同,为 Panasonic 18650 锂电池,这呼应了先前 Gogoro 与 Panasonic 合作的消息,电池外观大小有如鞋盒大小,重约 9 公斤,为一般人双手可提起的重量,内建 NFC 等 25 种感测器,Gogoro 主打电池交换概念,当机车骑到电池没电时,并不用慢慢等著充电,而是骑到 GoStation,将机车电池取出,放入空槽孔中,6 秒钟后,会由其他槽孔跳出充满电力的电池,拿取后直接上路。</p>
<img src=\"http://img.technews.tw/wp-content/uploads/2015/01/gogoro-003-1020.0.jpg\">
<h4>(Source:<a href=\"http://www.theverge.com/2015/1/5/7484171/gogoro-smartscooter-electric-scooter-removeable-battery\">TheVerge</a>)</h4>
<p>过去电动机车为人诟病之处就是充电慢、行驶距离不足,但若能在城市中遍布 GoStation,则可解决此二个问题,因为随时交换电池只需 6 秒钟,只要在 GoStation 普及的范围内,可说实际上不用担心行驶距离问题,而由于机车在亚洲大多为市区交通,如通勤、快递送货等使用,只要能在市区内普遍设立 GoStation,就可大为提升电动机车的实用性,解除过去电动机车销售上最大的障碍。而 GoStation 设置成本也并不高,每座约为 1 万美元。</p>
<p> </p>
<h3>迈入智慧城市</h3>
<p>另一方面,GoStation 与交通有关、存有大量电池,并与电力网路相连结的特性,一旦普遍设立,将成为进军智慧城市的踏脚石。</p>
<p>智慧城市的重要领域包括交通、能源、水资源、保健、废弃物处理等领域,GoStation 的交换资料,能够让城市政府交通相关单位掌握机车的使用热点,进而做出更好的市政规划,而 GoStation 内部存放大量充电中的电池,在欧美,类似的设施,如特斯拉的电池交换站,都设想到可以同时作为智慧电网的一环,如当市区内某区域能源需求突增,可由附近的站点暂停充电,甚至从电池馈电,来因应变化,而不至于跳电,而 GoStation 也可能在夜间电力离峰时间充电,降低白天尖峰的用电压力。</p>
<p> </p>
<p>除此之外,《富比世》(Forbes)报导,陆学森表示,当大都会人口成长,尖峰用电需求不断上升,想像 gogoro 智慧电动机车与 GoStation 能收集车主何时、在何处交通的资料,将有助于城市的智慧电网了解与预测用电需求,因而能提早因应。如此一来,城市电力网路将不必为了尖峰流量而大幅扩建或更新输配系统,可节省大量预算。</p>
<p>陆学森接受科技媒体《SlashGear》采访时也指出,在都会化的趋势下,世界最终将有 6 成人口居住在大城市之中,而目前的都市居民有 12% 的收入,都花费在能源相关的开销上,其中有一半是汽油,若能节约这一大部分的开支,不仅对人类有帮助,也是广大的市场,更有助于降低全球碳排放。</p>
<p>由此可知,GoStation 不仅只是推动电动机车的推手,其最终愿景为协助城市以及电力网路智慧化。此外,GoStation 的智慧面板,若与智慧城市的资讯系统结合,不仅可提供气候等资讯,甚至可能作为智慧服务功能。</p>
<p> </p>
<h3>以亚洲都市为起点</h3>
<p>智慧城市目前为全球主流趋势,在台湾也成为多个市政府的重要施政目标,如台北市长柯文哲即期望建立智慧政府、智慧城市与智慧市民,也因此造成资讯局长一度难产,最初柯文哲市长期待新任资讯局长能够成为台北智慧城市的资讯长,然而,智慧城市牵涉专业领域过广,并非单一一人所能胜任,所需要的人才规格,也非市政府的薪资标准所能负担,于是有了「香蕉的待遇只能雇到猴子」之叹,最后折衷办法为市府成立智慧城市委员会,由各领域专业的委员协助制定策略,资讯局负责执行。</p>
<p>由台北市资讯局长一度难产,可看出智慧城市千头万绪,对每个城市来说都是相当大的挑战,若城市内以机车需求,由民间力量普设 GoStation,将可成为智慧城市推动的一大助力。</p>
<img src=\"http://img.technews.tw/wp-content/uploads/2015/01/g0107.png\">
<h4>(Source:<a href=\"https://www.youtube.com/watch?v=GSYs4IEclpU\">Youtube/Gogoro</a>)</h4>
<p>Gogoro 于 CES 2015 中透露,2015 年将于一个亚洲城市开始进行 GoStation 计画,但尚未明言将为哪个城市,可说继承一贯的饥饿行销策略,推测 gogoro 可能于下一个消费性电子展会或是汽机车重要展会发表其首要主打城市。而《富比世》则报导,gogoro 将选择超过 1,000 万人口的大都会,作为第一个起步的城市。</p>
<p> </p>
<h3>消费性电子产品设计思维</h3>
<p>然而,如此广大的愿景,仍然要 gogoro 的智慧电动机车本身成功,才有可能成真。在机车本身,gogoro 的表现可说也让人相当惊艳,其机车的设计可说跳脱了传统电动机车的既定印象,与 GoStation 的设计风格一样,偏向消费性电子产品风格,而非传统的汽机车设计风格,多家欧美科技媒体认为,这样的特立独行风格,来自于陆学森为设计消费性电子产品出身,过去从未设计过机车。但如此一来,反而带来了新鲜感。科技媒体《The Verge》誉为「你所买得起最酷的机车」。</p>
<p>机车车身与零组件也与过去电动机车不同,并不利用现有机车零组件,全数零组件含传动系统、悬吊系统、前后轮碟煞、LED 车灯、底盘与所有的电子系统都是由 gogoro 原创设计打造。</p>
<p> </p>
<p>机车的车身可说以轻便、小巧、简洁的都市风格为主,在性能上,可由停车状态在 4.2 秒钟内加速到 30 英里(48.3 公里),最高速度约达 60 英里(96.6 公里),内建双电池槽,两个电池都充满电的状态下,行驶距离达 100 公里,以市区行驶来说这样的性能与续航力已经相当足够,CES 2015 上 gogoro 更展示机车压车快速转弯与烧胎,宣告其智慧电动机车绝非过去一般人印象中「无力」的旧式电动机车。</p>
<img src=\"http://img.technews.tw/wp-content/uploads/2015/01/Gogoro0107.png\">
<h4>(Source:<a href=\"http://www.gogoro.com/#/faster\">gogoro</a>)</h4>
<p> </p>
<p>目前全球机车市场最主流的机车为 125cc 车种,约占 8 成市场,gogoro 也以 125cc 为「假想敌」,其传动系统动力在铝轻量化车身上的表现,比 125cc 对手快上 16%。而 gogoro 机车也加强防水性,而比内燃机机车防水性更佳,当亚热带地区下大雨积水,传统机车担心排气管浸水抛锚,gogoro 机车却没有这样的顾虑。</p>
<p>gogoro 强调其产品为智慧电动机车(Smartscooter),非仅是一般电动机车,身为智慧产品,除了头灯会在天色暗时自动开启这种智慧功能以外,与智慧型手机的连结更是重点。</p>
<img src=\"http://img.technews.tw/wp-content/uploads/2015/01/gogoro-teardown.jpeg\">
<p> </p>
<h3>电动车与智慧手机的结合</h3>
<p>陆学森曾于宏达电任职的经历,为 Gogoro 带来了更完整的与智慧型手机整合的概念,除了会在智慧型手机 app上显示基本的行驶路线、电池电力等资料,可以用 app 开行李箱,以及可透过手机 app 个人化设定诸如机车面板颜色、锁车灯号颜色等等以外,车身上有 30 种感测器,含电池上的 25 种感测器,随时检查车身与电池状况,每 10 分钟回报,若是车子有了任何问题,就会即时在手机上通知车主,若是车主没有看手机,则会在下次交换电池时,在 GoStation 的智慧萤幕上通知车主,确保车主的安全。</p>
<img src=\"http://img.technews.tw/wp-content/uploads/2015/01/bgd-module-smarter-5-1.jpg\">
<h4>(Source:<a href=\"http://www.gogoro.com/#/faster\">Gogoro</a>)</h4>
<p>Gogoro 智慧电动机车还有一个对手机重度使用者最贴心的功能:在行李箱里头就有 USB 埠可以帮手机充电。</p>
<p>车身上的感测器更结合了演算法,当车主买回 Gogoro 智慧电动机车,开始骑乘后,感测器收集的资料,会让智慧电动机车不断学习车主的行驶模式,一边调整能源管理模式,最后,机车的能源管理,将能完全配合车主的日常需求,达到最省电的效果。</p>
<p> </p>
<h3>用手机模式走一条不一样的路</h3>
<p>甚至连电动机车的商业模式也可能模仿手机。手机往往与电信业者结合,以便宜价格推出,但是收取服务费用,《富比世》报导,Gogoro 表示,电动车最大的成本来源就是电池,电池本身占 4 成成本,若把电池与充电回路除去,机车车身成本就会大为降低,如此一来,Gogoro 将可以追求手机商业模式,也就是说,机车本身以相当低廉的价格贩售,主要从电池充电服务收费来得到营收。</p>
<p>如此一来,更能避免电动机车过去不能普及的另一个主要障碍:价格过高。gogoro 虽然尚未宣布其价格,但预期若在手机商业模式下的补贴后,将比想像中低,由于其设计风格,与可能的低价,相对于特斯拉的高价,科技媒体《SlashGear》将 gogoro 誉为「平民特斯拉」(Tesla for the everyone)。</p>
<p>大部分国内媒体,将 gogoro 视为一般电动机车报导,但从许多外媒报导可看出,欧美媒体以及产业界已经看出 Gogoro 的野心与潜力,全球目前估计约有 2 亿辆机车,而机车产业已经几乎 20 年没有重大创新,的确是进行破坏式创新的适当领域,而 gogoro 结合智慧城市概念的远大愿景,将从哪个城市开始落实,发展是否顺利,不仅是电动机车界动见观瞻,也将成为智慧能源与智慧城市领域的注意焦点。</p>
<ul>
<li><a href=\"http://www.gogoro.com/\">Gogoro Official web site</a></li>
<li><a href=\"http://www.slashgear.com/gogoro-smartscooter-is-tesla-for-the-everyman-05362021/\">Gogoro Smartscooter is Tesla for the everyman</a></li>
<li><a href=\"http://www.forbes.com/sites/aarontilley/2015/01/05/meet-gogoro-the-electric-scooter-coming-to-a-megacity-near-you/\">Meet Gogoro, the Electric Scooter Coming to a Megacity Near You</a></li>
<li><a href=\"http://www.cnet.com/pictures/gogoro-tries-to-bring-the-sexy-back-with-its-smartscooter/8/\">Gogoro tries to bring the sexy back with its Smartscooter</a></li>
<li><a href=\"http://recode.net/2015/01/05/well-heeled-gogoro-unveils-plan-to-cover-cities-with-scooters-and-battery-swapping-kiosks/\">Well-Heeled Gogoro Unveils Plan to Cover Cities With Scooters and Battery-Swapping Kiosks</a></li>
<li><a href=\"http://www.businessinsider.com/gogoro-launches-smart-electric-plugless-scooter-2015-1\">Mysterious Startup Gogoro Quietly Raises $150 Million For An Electric Scooter You’ll Never Have To Plug In</a></li>
<li><a href=\"http://www.theverge.com/2015/1/5/7484171/gogoro-smartscooter-electric-scooter-removeable-battery\">Meet Gogoro, the outrageous electric scooter of the future</a></li>
</ul>
<p>(首图来源:<a href=\"http://www.gogoro.com/#/faster\">gogoro</a>) </p>
</div> | Outside attr keyword | 2015-10-13T01:55:35.000Z |
|
(?s)^(Verse \d|Chorus |Interlude|Ending|Pre-Chorus|Bridge|Chorus \d)$(.*?)(?:(?:\r*\n){2}) | song to html | 2016-07-27T18:57:53.000Z |
||
The given regex matches the IPV4 address of given ip address string. | ((25[0-5])|(2[0-4][0-9])|(1[0-9][0-9])|([1-9][0-9])|([0-9]))[.]((25[0-5])|(2[0-4][0-9])|(1[0-9][0-9])|([1-9][0-9])|([0-9]))[.]((25[0-5])|(2[0-4][0-9])|(1[0-9][0-9])|([1-9][0-9])|([0-9]))[.]((25[0-5])|(2[0-4][0-9])|(1[0-9][0-9])|([1-9][0-9])|([0-9])) | 200.99.99.25
(([0-9])|([1-9][0-9])|(1[0-9][0-9])|(2[0-5][0])|(2[5][1-5]))[.](([0-9])|([1-9][0-9])|(1[0-9][0-9])|(2[0-5][0])|(2[5][1-5]))[.](([0-9])|([1-9][0-9])|(1[0-9][0-9])|(2[0-5][0])|(2[5][1-5]))[.](([0-9])|([1-9][0-9])|(1[0-9][0-9])|(2[0-5][0])|(2[5][1-5]))
([0-9])|([1-9][0-9])|(1[0-9][0-9])|(2[0-5][0])| | IP address regex of IPV4 | 2015-09-30T05:46:44.000Z |
\w+\@\w+\.(com|ru|net) | 6 | 2015-10-30T17:15:16.000Z |
||
(?i)(beatiful| ).*(people[a-zA-Z0-9]{2,3}) | I am charming and friendly people00 | test | 2015-12-16T07:34:40.000Z |
|
Validator for a typical resource ID string | ^[a-z]+(_[a-z]+)+$ | Resource ID validation regex | 2016-07-16T09:59:14.000Z |
|
^CN=([a-z0-9\-]+),.* | CN=DQF4133,OU=Utilisateurs,OU=Desjardins,DC=mvt,DC=desjardins,DC=dev
| get CN from LDAP directory entry | 2017-02-15T19:49:29.000Z |
|
\bsia\b | Questa regex ricerca la parola sia in una frase: ma siamo sicuri che sia corretta? | Digital | 2016-08-09T17:07:51.000Z |
|
(http(s)?:\/\/)?(www.)?(formable\.se(?!\/almega)\/\S*) | formable.se/xxxx122..44442xxxxxx gfgdff
http://www.formable.se/almega/xxxx122..44442xxxxxx gfgdff | Almega Formable | 2018-06-12T18:18:59.000Z |
|
Find a number with a value in the range of 2 through 999. | ^([2-9]|[0-9][0-9]|[0-9][0-9][0-9])$ | 2 | Number 2...999 | 2016-07-12T14:08:54.000Z |
Seperate any file from it's path and trim extention, creating two groups | (\/?.+\/)*(.+?)(?:\..+)?$ | ./piechart.js
./piechart.js
piechart.json
./letds.assd
./piechart
modules/piechart/piechart.js
./modules/piechart/piechart.js
./modules/piechart/piechart
/modules/piechart/june/june.js | File path seperator | 2016-05-18T05:50:23.000Z |
(^[^\-]*)\W([^\s]*)\s+([^\s]*)\s+([^\s]*)\s+([^\s]*)\s+(.*$) | Jul 28 08:27:40 Mon-iWEB-R03-APS-01 authproc1_auth01 {"actn":76,"pckId":"7a25f9c4bb39cacf","sId":"354669705072900392110145246","utId":106854,"did":"60b265bd68322e8c","dvcc":3,"vsn":"139"} | authproc1_auth01_2 | 2016-09-07T10:02:37.000Z |
|
Valida se é um CPF ou um CNPJ válido, independente da máscara | ^(\d{3})\.?(\d{3})\.?(\d{3})\-?(\d{2}$)$|^(\d{2})\.?(\d{3})\.?(\d{3})\/?([0-1]{4})\-?(\d{2})$ | 07634269111179 | CPF/CNPJ - Com/Sem máscara | 2015-09-08T20:18:25.000Z |
Basic validation of UK student UCI numbers. Please note that further validation must be done to confirm the final character ( the 'control character') is correct: http://www.wjec.co.uk/exam-officers/entries/unique-candidate-identifiers.html | ^(\d{12})([A-HK-MRT-Y]{1})$ | 123123123123H
456456456778L
123123123123H | UK Unique Candiate Identifier (UCI) | 2016-08-31T08:08:48.000Z |
(?s)<a\s*href=['"](?<link>.+?)['"]\s*>(?<text>.+)<\/a> | <a href="https://blogs.technet.microsoft.com/exchange/2011/04/21/mixed-ing-it-up-multipartmixed-messages-and-you/">More reading
material</a> | HTML link | 2018-10-14T21:19:43.000Z |
|
Matches URL Path with variables {} and [] for using into API routers | ^(\/)([\w\/\[\]\{\}]*)(\??[\w\/\[\]\{\}]+\=[\w\/\[\]\{\}]+)*(\&?[\w\/\[\]\{\}]+\=[\w\/\[\]\{\}]+)*$ | /foo/bar/baz/{id}/8/7?querytest=9&abc=234 | Simple URL Path | 2018-02-23T05:54:26.000Z |
All digit must be number | ^[0-9]+$ | 123456 | All digit must be number | 2021-04-15T04:05:53.000Z |
[\(]?\d{3}[-\.)]\d{3}[-\.]\d{4} | Lorem colour ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, color quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
single
487-894-5672
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt coloursmollit anim id est laborum colors.
words
345.234.5678
Lorem colour ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, color quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
single
(345)876-4588
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt coloursmollit anim id est laborum colors.
words | matching numbers | 2020-07-01T21:01:45.000Z |
|
Discussion
https://www.reddit.com/r/regex/comments/kxtyl6/capturing_between_phrases_across_multiple_lines/
https://www.reddit.com/user/Pauley0/ | ^(?:(\\section\{[^\v}]+})\v+)?
^((?:[^\\\v][^\v]+\v*)+)(?<!\v)$ | Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\section{introduction}
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\section{introduction}
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\section{background}
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | Capturing between phrases across multiple lines | 2021-04-11T23:10:30.000Z |
(\([^\(]*\)) | ( rafa / %aa)+(23+34) | Separar grupos con parantesis | 2017-12-03T20:15:50.000Z |
|
\] - (?<x_forwarded_for>(?<![0-9])(?:(?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})[.](?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})[.](?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})[.](?:25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2}))(?![0-9])|-)(\s\'(.*)\') | 10.47.0.15 - - [22/Feb/2019:12:10:36 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=DME HTTP/1.1' 200 457 '-' '10.107.151.157:80' '200' '0.015' [0.015] - - 'MISS'
10.47.0.15 - - [22/Feb/2019:12:10:36 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=LED HTTP/1.1' 200 493 '-' '10.107.151.157:80' '200' '0.002' [0.002] - 188.64.147.251, 185.94.108.35 'MISS'
10.47.0.15 - - [22/Feb/2019:12:10:36 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=AER HTTP/1.1' 200 381 '-' '10.107.151.157:80' '200' '0.002' [0.002] - 188.64.147.252 '-'
10.47.0.15 - - [22/Feb/2019:12:10:37 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=KRR HTTP/1.1' 200 459 '-' '10.107.151.157:80' '200' '0.002' [0.002] - 188.64.147.253 'MISS'
10.47.0.15 - - [22/Feb/2019:12:10:37 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=SIP HTTP/1.1' 200 488 '-' '10.107.151.157:80' '200' '0.003' [0.003] - - '-'
10.47.0.15 - - [22/Feb/2019:12:10:37 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=OVB HTTP/1.1' 200 470 '-' '10.107.151.157:80' '200' '0.002' [0.002] - 188.64.147.254 'MISS'
10.47.0.15 - - [22/Feb/2019:12:10:37 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=KZN HTTP/1.1' 200 399 '-' '10.107.151.157:80' '200' '0.003' [0.003] - 188.64.147.255 '-'
10.47.0.15 - - [22/Feb/2019:12:10:37 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=OVB HTTP/1.1' 200 470 '-' '10.107.151.157:80' '200' '0.002' [0.002] - 188.64.147.222
10.47.0.15 - - [22/Feb/2019:12:10:37 +0300] 'GET /app/LocationService?action=get_by_iata&lang=ru&iata=SIP HTTP/1.1' 200 488 '-' '10.107.151.157:80' '200' '0.003' [0.003] - -
185.94.108.35 - android [18/Mar/2019:16:02:55 +0300] "GET /passbook/api/passes/google/createPass?cardNumber=941906182&passTypeIdentifier=pass.S7.ffp-card HTTP/1.0" 200 2702 "-" "172.20.9.119:6002" "200" "0.234" [0.233] - 91.186.109.66, 185.94.108.35
| 111 | 2019-03-18T18:51:14.000Z |
|
Matches alphanumeric, @, . , - | ^[a-zA-Z0-9@\-\.]*$ | t3st
t#st
p@ssw0rd
t3sting@@@@akldsxfkshgkjaehfk
p23549$adk
dskalf
adv-admin
adv$-admin
[email protected]
| Username regex | 2022-08-16T16:34:07.000Z |
Combat `md.replace(regex, "<pre>")` and `md.replace("```", "</pre>")` to replace Markdown codeblocks with HTML ones | ```(?<=```(?=[^`\n]))[^`\n]+ | ```js | Codeblocks | 2022-06-07T18:23:00.000Z |
([\s]+)([A-Z]+[a-z]+[,][\s]) | Georgiana, Mary Louise Gettemy, Blanche Getz, Donald Eugene Gibboney, Josephine Marie Giffin. Harriet Vivian Gill, Marjorie Rita Gill. Dorothy Elizabeth Margherita Gioiosa. Audrey Gleichert, Annabelle Louise Glenn, Ethel Louise Glenn, David R. Good, Peggy Louise Good. Frank Edward Goodman, Jr., Ray L. Goodman, Eleanore Jane Gorsuch, Richard S. Goshen, Oliver E. Graffius, Max R. Gram- ly. Eunice Mae Granville. Clifford Harry Gray, Marian Elizabeth Gray, Sara Jean Gray, Jeanne Lovina Grazier. . Dorothy Elizabeth Green. Doris Marie Greene, Gertrude Elizabeth Greiner, Virginia M. Greiner, Hazel A. Griffith, Sarah Lee Grimshaw, Dottie Louise Grove, Helen Almeda Grove, Jean. Jie Louise Grove, William Sharr.n Grove, Pauline Antoinette Gug-liotta, Harold Frederick Gundei, Helen Gertrude Gundei, Edythe Irene Gunesch, Louise Alma Gun- eallus, Robert Wesley Gutshali. Lillian Esther Haberstroh, Dorothy Jean Hack. Harry Haines, Jr. Paul Francis Hainley, David L. L. Hall, Helen Beatrice Hall, Phyllig Joyc. Hall, Anna Marjorie Hailer, Frank L. Hamer. Sarah Louise Hamilton, Vivian Annetta Hammaker, Walter J. Hammer, Virginia Esther Hana-walt, Pauline Elizabeth Hancuff. Elvin E. Hanley, John Lee Harkenrider, Jack Harkless, Ida Josephine Harland, Jack G. Harlin, Stoy Ottig Harman. Willard Kistler Harnish, Albert Donald Harris, Betty Bell Harris Jesst Melvin Harris, Richarj Thomas Harris, Roxie Anna Harris, Ralph Derr Harrity, Eiieen Hart, Dale Charles Harten, Janet Louise Harten, Alice Jane Har.-sock, Thomas Eldon Hislett, James Lewis Hatch, Bessie Mae Haupt, Bernadine L. Hawn, Peggy Heaps, Ellis Theodore L. Hed-berg. Sara Elizabeth Heinbaugh, Flora Cardinal Heist, Dorothy M. Heller, Ear Randell Helsel, Graham W. Helsel. Naomi Genevieve Helsel, Wanda Gertrude Helsel, William Richard Hennigan, Charles Wayne Henry, Naomi Jean Herbert, Robert Rogers Herr, Ann Marie Hess, Martha . Hicks, Richard Joseph Higgins, Alden Frederick Hile-man, Dorothy Marie Hileman, John Stuart Hileman, Allene Mar ie Hill, Dorothy Winifred Hippo, Alice Frances Hirst, Charles John Hoefler, Allan Milton Hoffman, Charles H. Hoffman, Cleo Louise Hoffman, Winifred Ore Lee Hoff man, George William Hogue, Jr., Robert Leroy Holdeman, Elsie Marion Hollingsworth, Vincent Clair Hooper, Constance Hoover. Alvin Merle Horton, Betty Louise Horton, Richard Ernest Hostler. Dalton Edward Householder, Gretchen L. Houser, Helen Vir-srinia Housner. Florence Vivian Houston, John Robert Housum, George D. Hower, Helen Louise Huber. Paul Mark Huebner, Mar garet Ann Hughes, John L. Hume, Bettv Humerick. Elsie M. Hum. Bettv Jane Ihm, Jonn Meivin Ihm, Gladys A. Ingham, isaivaaore Rocco Iovannone, Wilbur Edwin Irvin. Victor Anthony Iuliano, J. Edmund Ivory. JoseDh Jacobs. Wilbur tr. Jami son, Albert John Janosik, Joseph Michael Jerkiewicz, Mary Eliza beth Jeffries. Joseph John Jerk- ovitz, Edwin George Johnson, Har ry Curry Johnson, Miriam Louise Johnson. Jack Jones, Jr., Bernard James Joyce. Sarah Irene Kantner. J. Mareuret Karle, Beatrice Viola Kauffman, Peggy Rosalie Kauffman, Robert Logan Kauff man, Brooks D. Kauffman, Wil liam R. Kauffmann, Virginia Elizabeth Kay. Bette Jan. Kaylor, Mary Eliza beth Keagy, Myrtle Clara Keagy, Dorothv M. Kearns, William Jo- ReDh Keen Frances Aileen Keech, Constance Louise Keirn, Jean Lo uise Keith, George Arthur Keller, Mervin Edward Keller, Marie Kathryn Kelley, Lawrence Robert Kells. Emilv Rose Kelly, Mary Elizabeth Kembeiling, Janet Mar ie Kemmler, Betty Irene Kensing- er. Marjorie Jean Ketrow. Martha Yvonne Kibler, Wini- fie.M Kile-ore. Gertrude Agnes Kimmel, William P. Kimmel. Rohei Nelson King\r\nWilliam Kinnev. Phyllis Patricia Kiser\r\nThaddeus J. Kisielnicki. Paul Harrv Kleffel. Ruth Kath leen Kline. Flovd Blair Knipple\r\nJr.\r\nDorothy KniseQ\r\nVivian Mar ti Knote. Helen Man. Koch\r\ni'aui Michael Koch\r\nHerman J. Koest. ner Pauline Marie Kolbenschlag\r\nNela Jean Koontz. Edward L. Kough\r\nGeorge Koury\r\nChristine Paula Kowell\r\nJean Elizabeth Kozam\r\nmarina Ellen Kraft, Charles Edward Kramer. Robert Daniel Kreider, Kenneth M. Krise, Harriet Sue Kromberg, Bernice Arline Kunn, Melvin Floyd Kuhn, Roy Earl Kunkle. John F. Kunstbeck, Bette Flor- ine Kyle. Norma Madeline LaCava, fns- cilla M. Laing. F. Luella Langer, Betty Lang- guth, Warren Elwood Lantz. Minnie Marv Laratonda, Velda Betty Lasher, Betty Jane Lathero, David Lattieri. Glenn Francis Laughlin, Robert David Laughlin, Joseph Lawruk, Marjorie Rose Leasure, John Albert Leberfinger, Clement George Lehrsch, Paul Vincent Leidy, Mary Jane Lemme, John Richard Leonard, Virginia Ann Lepore. Arnold Robert Levine. Doris B. Lewis. Dorothv L. Lewis. Herbert Clyde Lewis, Naomi Etter Ley, Alya Anne Lickel, Bertha Mae Lal- Erma Delores Lindemer Rulh Ellen Lindie, Idabelle Lingenfelt-er. Pearl Aurirev T,inffpnflttr Carmen Elayne Little, Mary Dolores Livot, Elizabeth Jane Lock-ard, Raymond Earl Lockard, Cla ra cridget Loeb. Bettv Loin Rdni T r, r Hazel Trene ..B , wt a, ivuvii Long, Shirley Long, Esther Eliza- uem iouaensiager, John Emanu-ei Love, Olivette Eleanor Love, Norma E. Lowey. Dennis Gordon Loynes, Stella Josephine Lozinski, Raymond S. Luke, Joseph Lurie, Raymond Arthur Luther, Kennt:i B. Lyk-ens, Lillie Irene Lyktns. Virginia Maa Lytle. Catherine Elizabeth McAllister, James Arthur McCall, Robert E. McCartney, Jr., Thomas W. Mc-Clellan. Anna Elizabeth McCormick. Margaret Mary McCracken, Joseph Edward McCulloch, E. Grace McDowell, John Dean McDowell, Virginia Anne McDowell, Pauline McGarvey, Leon Russel McGeary, Mildred Alice McGirk. Eugene E. McGregorf Helen Louise McGregor, John Fiske Mc-Hugh, Clara Elizabeth McKee, Constance Lucille McKnight, Robert F. McManamy, Eleanor Jeanne McMinn, Dorothy Mae McMonigal. Jane McMamara, Mary Elizabeth McNerling. Raymond F. cQuade. Betty Jayne Mackey, Helen Elizabeth Mackey. Patsy Albert Mainello, Yolanda Marie Maiorino, Samuel Guy Ma-lone, Rose Marie Mangiacarne. J. Warren Manley, Dorothy Mae Manning, Harold Mannion, Bette Lorraine Manspeaker, Kanalla Louise Marcus, John Lucas Marshall, Margaret A. Marshall, Frances Marie Marthoski, Albert Irvin Martin, Alice Rebecca Martin, Marjorie Maxine Martin, Carmel Mary Martino, Jack Duane Martz, Lyman Martz, George Joseph Maschke, Richard Joseph M. Mast-erson. Lena Patricia Masucci. Ken neth James Mater, Doris J. Hath- Helen Grace Mehaffie,' Michael John Melnick, Kenneth J. Mentch, William H. Mentch, Anna Gertrude Mentzer, Lois Elizabeth Mentzer, Robert Edwin Mentzer, Nad John Meredith, Belva Louise Merritt, Bertha Jean Metzger, Joseph Calvin Meyer, Betty Louise Mickel, Robert Doyle Mierley, Allen J. Miller. Charles Edward Miller, Dorothy Elizabeth Miller, Georgine Collins Miller, Jean Ann Miller, Joseph Calvin Miller, Lester A Marjorie Jane Miller, Miller, Samuel Ward Miller. John Joseph Misciagna. George Franklin Mock, Herbert Earl Mock, Ruth Evelyn Mock, Jane Lilian Moerschbacher, Ercole Ralph Moffa, Lena Mazie Mollica, Betty Jane Moore. Erraa Jean woreui, Marjorie Elizabeth Morgan, Patty Jean Morgan, Daniel Henry Moses, John M. Mottner, Alma Catherine Moyer. Josephine Muccitelli, Louis D. Muccitelli, Ernest M. Musselman, Marian M. Musselman, Marian Lucille Musser, Nancy Louise Mus-ser, James Porter Myers, Jr., Richard L. Myers. Betty Madeline Nader, Angela Petronilla Nagl. Marcella B. Naperkoski, Tony Joseph Nardella. Martha Audrey Neaffer, Elwood Clair Nearhoof, Lois Mae Near-hoof. Martha E. Neher, Jean Eleanor Nelson, Ruth Marie Neugebauer, Paul Joseph Nevedal, Imogene Fern Nicodemus, Josephine Naomi Nixon, Frank Edward Noel, Lela Audrey Noll. Madalyn Vera Noriis. Nellie North, Pauline Frances Novosel, Robert. Melvin Nowlen. Jack W. Ogden, Annastasia S. Olkowski, Dorothy Ollinger, Caroline Rose Orner, Jayne Kathleen Osner, Dorothy . Irene Ostrander, Dolores Catherine Oswald, Frances E. Oswald. Harry Leroy Otto, Jr. Marguerite Grace Overcash, Robert Roy Owens. Eva Jayne Packer, Winifred Patricia Paff- Helen E. Palovsky, Eva Bessie Panagos, James William Panos, Harry L. Parrish, Jr., June A. Parson, Virginia Ellen P arsons, Mary Jane Patronik, Amelia Marie Pavoni, Robert Ellsworth Pearce. Don Miguel Peoples, Matilda Mary Pepe. David Lee Peters, Retta Belle Peters, Ernest Leroy Peterson, Wayne Bennett Pheasant, Jayne Louise Phillips, Arthur Paul Piet-rolungo, Angeline Pietropaulo. Nellie Frances Piotrowski, Andrew Michael Pirro, Frances Kathryn Pizzino. Richard Anthony Plank Ra pearl Plummer, Leo Francs Plunket. Marcella Fiances Poppenwimei, Janice EUen Porta, Thelma Re-genia Porta, .Marjorie Butler Porte. , , Mary Elizabeth Porter. Roberta Elizabeth Porter, Frank Emanuel Prestipino, Webster 1. Pringle, T?eHv Louise Probst, Frank Xavi- er ProgL Viola Ann Prosperl, Jack Wayne Pruyn, Vincent A. Pucciar- ella Antoinette Virginia Pulici- chio. Bernice Marie Quirin, Charles Quirin. Betty J. Raber. Carley Mae Rager. Edward G. Raichle. Jeanne Beatrice Ramey, Michael Rapuano, David John Ben Roy Rath, Madalyn Louise Redline, Iris Adele Reed, Margaret Rebecca Reed, Richard Thomas Reed, Wallace E. Reed. Betty Jane Reid, Norma Helen Reish, Betty Louise Richards, F. Marguerite Richards, Ruth Fouse Richards, Dolores Jane Ricko, Grayce B. Rider, Lois Joan Riley, Marjorie Marie Riley, Edna Rita Riner, Anthony Rlspoli. Germaine Ritchey. Rosie Dorothy Rizzo, Mary Edna Robinson, Dolores Corrone, Robison, James Joseph Rock, Lu cille Minerva Rockey, Robert Rod- gers, Caroline C. Roefaro, Elizabeth June Rohe Roy W. Rom-berger, Dolores Jane Rorabaugh, Frank Vincent Roscio, Irene Lois "r ir . . sc, margaret jean nosenDerg- er, Charles Ulysses Ross, Jr., Lois E. Ross. Rosalie Margaret Rosskopf, H. Lloyd Roudabush, Nina Ruth Rouzer. Joseph B. Ruberto. Marie Antoinette Rubino, Der-wood Calvin, Rudasill, Paul B. Runyen, Esther Lorraine Run-yeon, Jeanne Anne Runyeon, Marjorie Ruth Rupe, Mary Louise Rupert, Marcella M. Russell, Walter Kenneth Russel, Patricia Margaret Ryan. Edward L. Sabatina, Elizabeth Helen Samuels, William J. Sanders, Rose Marie Savine, Matilda Savino, Horace S. Saylor," Marian Saylor, Warren Clyde Schadle, Dolores Marie
Schaefer, Theresa Sophie
Schamris, Martha Anna
Schauer. Mary Patricia
Schell, Herbert Anthony
Scherzinger. Richard Lewis
Schlehr, Ruth Ella
Schoening, Conrad Edgar
Schorner, Ernest Joseph
Schorner, Dorothy Marguerite
Schroeder, Leroy Arthur
Schroth, Sidney
Schulman, Yale
Schulman, Gertrude Conisea
Schultz, Melvin Charles
Schwartz, William Thomas
Sciarrilla, Shirley Ann
Scott, Vivian M.
Scott, Walter Douglas
Scott, Nellie Jane
Secse, Eleanor Mae
Seidel, Louis William
Seidel, Helen Jeanne
Selwitz, Edith Rose
Ser-venti, Sarah Elizabeth
Shaal, Kermit Nelson
Shaffer, Fred
Shaheen. John Paul
Sharer, Richard W.
Sharer, Thomas William
Sharrar. Virginia E.
Shartle, Stewart Dean
Shaver, Phyllis Elaine
Shaw, Leo-na Marguerite
Shellenberger, Laurence Nelson
Shelley. Sara Jan.
Shollar, Gloria Marie
Shortino. Marie Jane
Shubert. Betty Marguerite
Shull, Mary Elizabeth
| Last Name & Comma Regex | 2018-04-21T02:36:37.000Z |
|
(E1E\w{4,5})-(\d{2,3})-(\d{2,3});("(\w{1,3})\W*\n(E1E\w{4,5})-(\d{2,3})-(\d{2,3})[^"]+")? | " Xpath входящего формата
Допустипы значения: XPath, ""константа""- должна быть в 1 столбце(<E0065>RECADV</E0065>), ""enum(, , ,)"" - если поле может принимать фиксированный набор значений
";квалификатор
;
;
hardcode=Сфера КУРЬЕР;
;
;
;
hardcode=02;
;
E1EDK02-67;
E1EDK03-67;
hardcode=643;
;
;
;
;
E1EDKA1-101-135;"WE
E1EDKA1-64-66 (3)"
hardcode=4025413896;
hardcode=997850001;
;
;
;
;
E1EDKA1-719-721;"WE
E1EDKA1-64-66 (3)"
E1EDKA1-390-398;"WE
E1EDKA1-64-66 (3)"
E1EDKA1-346-380;"WE
E1EDKA1-64-66 (3)"
E1EDKA1-241-275;"WE
E1EDKA1-64-66 (3)"
;
;
;
E1EDK28-224-253;
;
E1EDK28-84-153;
E1EDK28-67-83;
E1EDK28-154-223;
;
;
;
;
;
E1EDKA1-101-135;"RG
E1EDKA1-64-66 (3)"
hardcode=4025413896;
hardcode=997850001;
;
;
;
E1EDKA1-719-721;"RG
E1EDKA1-64-66 (3)"
E1EDKA1-390-398;"RG
E1EDKA1-64-66 (3)"
E1EDKA1-346-380;"RG
E1EDKA1-64-66 (3)"
E1EDKA1-241-275;"RG
E1EDKA1-64-66 (3)"
;
;
;
;
;
;
E1EDP01-64-69;
E1EDP19-102-171;
E1EDK01-218-220;
E1EDP26-64-66;
;
Calculation;
E1EDP05-177-191;
;
;
E1EDP04-71-87;
hardcode=процент;
;
E1EDP04-88-105;
;
;
;
E1EDS01-67-84;"10
E1EDS01-64-66 (3)"
E1EDS01-67-84;"11
E1EDS01-64-66 (3)"
E1EDS01-67-84;"5
E1EDS01-64-66 (3)"
E1EDS01-67-84;"5
E1EDS01-64-66 (3)"
;
;
;
;
hardcode=4025413896;
hardcode=Руководитель секции управления сервисной сетью в странах СНГ;
;
hardcode=Нигматуллин ;
hardcode=Ринат ;
hardcode=Фаритович;
;
;
;
;
| idoc mapping to xsl func | 2017-05-11T21:43:50.000Z |
|
# 可以用来替换企业名称中的中英文括号
eg: 阿里巴巴(中国)股份
阿里巴巴(中国)股份 | [\(\)()] | abcdwadwadadaabc()dwadwadwad()() | 匹配中英文括号 | 2022-02-10T06:46:46.000Z |
This regular expression will match anytime in a string where an odd amount of backslashes directly following eachother are present. | (?:(?<=[^\\])|^)(\\(?:\\{2})*)(?=[^\\]|$) | \startofline \\
\ asf
sring\e
yappadoo\\\n
\\\\ fine
this is not\\\\\
\\\\\\\
good\\nstring\\n and fine\\t
this is\nbad
indent\\t
\ | Match odd amount of backslashes. | 2019-06-27T10:57:12.000Z |
(<\?php echo L10n\:\:icon\(')(.*?)('\); \?>)(\n)(\s+)(<\?php echo UI\:\:timeago)(.*?)(\); \?\>) | <?php echo L10n::icon('calendar'); ?>
<?php echo UI::timeago($License->iso_8601_purchased, $License->purchased); ?> | Swap icon into timeago icon | 2019-05-17T22:46:46.000Z |
|
amu\.edu\.pl | amu.edu.pl | 2018-05-02T11:15:30.000Z |
||
(^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+.[A-Za-z]{2,}$|^(?![\s\S])) | email or empty | 2020-08-16T12:58:23.000Z |
||
More and more project use the "Conventional Commit" specification. As it allows some nice toolchain automations in projects you might want to enforce it in gitlab. May work in other git portals too | (build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert)\([\w\-]+\):\s.* | Merge branch 'bla' of askfajl into aslfjkasld | Gitlab push rule enforcing commits to follow the "Conventional Commit" specification (used for ex. in Angular ...) | 2019-04-17T09:36:33.000Z |
Phone number | (\d{3})[ -]?(\d{3})[ -]?(\d{4}) | 1234567890
123 456 7890
123-456-7890 | Phone number | 2022-07-06T03:21:42.000Z |
^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$ | ID15 | 2017-04-29T02:05:52.000Z |
||
(xcopy)|([A-Z]:\\[^ ]*)+ | xcopy C:\test D:\target\backup\files
(xcopy)|([A-Z]:\\[^ ]*)+ | コマンド処理 | 2018-09-21T09:16:36.000Z |
|
(\b|[#])ИС-5 B\/1 D\.06' \(Объект 730\)(?=\b|[^-]) | ИС-5 B/1 D.06' (Объект 730)
ИС-5 B/1 Dd06' (Объект 730)
ИС-5 B/1 D!06' (Объект 730)
ИС-5 B/1 D_06' (Объект 730)
#ИС-5 B/1 D.06' (Объект 730)
ИС-5 B/1 D(06' (Объект 730)
ИС-5 B/1 D"06' (Объект 730) | warscope | 2017-04-30T10:31:07.000Z |
|
Parses `printf` conversion specifications.
This version detects multiple flags and ` `(space) flag. MSVC length modifier `I64` is also supported.
I'm using this regex in my Python project, so please change accordingly if you use other flavor of regex. | %(?P<flags>[-+ #0]*)(?P<width>\d+|\*)?(?:\.(?P<precision>\d+|\*))?(?P<length>hh|h|l|ll|j|z|t|L|I64)?(?P<specifier>[%csdioxXufFeEaAgGnp]) | %I64u | printf conversion specification parsing | 2021-04-17T09:35:58.000Z |
Replaces [sinon.js](http://sinonjs.org/docs/#stubs) stubs configuration with similar behaviour achievied using the [ts-mockito](https://github.com/NagRock/ts-mockito) library | (\w+\.\w+)(\.withArgs\((.+)\))?\.returns\((.+)\) | foo.bar.withArgs(egg[0], eggy).returns(foobar);
foo.bar.returns(foobar);
foo.bar.withArgs('egg').returns('foobar'); | Replace sinon stub configuration with ts-mockito equivalent | 2017-02-08T06:13:05.000Z |
(?<=\()\s+|\s+(?=\)) | hola que ( hase tu a estas horas ) | Remove unnecessary spaces after and before parentheses | 2016-08-17T15:26:03.000Z |
|
Get Wikis or Wikipedia urls. I use it for Stylish extension in Firefox | http(?:s?):\/\/w*\.*wiki\S+ | http://wikipedia.org
http://wiki.mauricio.com
https://wiki.algo.com
https://wikipedia.org
http://www.wikipedia.org
https://
http://www | Wikis or Wikipedia | 2015-12-13T22:22:44.000Z |
"([^\"]*)" | "test\"@test.com" | test | 2014-07-10T18:08:59.000Z |
|
http://www.rexegg.com/regex-humor.html#meaning-of-life | ^(?=(?!(.)\1)([^\DO:105-93+30])(?-1)(?<!\d(?<=(?![5-90-3])\d))).[^\WHY?]$ | 42 | The meaning of life | 2015-10-05T12:49:37.000Z |
This regex grabs all kinds of imgur links and groups them in meaningful names aswell. This way you have full flow-control in your python-scripts. | (^(http|https):\/\/)?(i\.)?imgur.com\/((?P<gallery>gallery\/)(?P<galleryid>\w+)|(?P<album>a\/)(?P<albumid>\w+)#?)?(?P<imgid>\w*) | Complete imgur link regex | 2015-03-13T11:26:49.000Z |
|
Matches a custom emoji from discord.
Group 1: Optional, "a" means animated, a gif.
Group 2: Emoji Name.
Group 3: Emoji Id; | <(a)?:([\w]{2,32}):([\d]{18,28})> | <:typescript:996832147874795601> | Discord GuildEmoji | 2023-05-11T20:35:17.000Z |
^[A-Z][a-z0-9_-]*( +[A-Z][a-z0-9_-]*)*$ | TesT Name
TEST NAME
Test Name
Test-here Name-there
Test-here Name-------there | ^[A-Z][a-z0-9_-]*( +[A-Z][a-z0-9_-]*)*$ | 2019-04-20T10:05:06.000Z |
|
^(.*[^-])\s(\d.*)$ | Friedr 5 ichstr 4
Friedrichstr. 44
Friedrichstr. 4a
Friedrichstr. 4A
Friedrichstr. 44a
Friedrichstr. 423B
Friedrichstr. 4a-5
Friedrichstr. 4-5A
Friedrichstr. 4 - 5
Friedrichstr. 4A - 34B
| Parse street and house number from address string | 2020-03-11T13:38:03.000Z |
|
Test if a mongo db connection string has a username and password declared in it.
_Doesn't work with with multi host ATM_ | ^mongodb:\/\/[^\/\,]+:{1}[^\/\,]*@{1}.*$ | mongodb://username:[email protected],app:[email protected]:2500/databaseName?replicaSet=test&connectTimeoutMS=300000
mongodb://db1.example.net, username:[email protected]:2500/databaseName?replicaSet=test&connectTimeoutMS=300000
| MongoDB connection string has username and password | 2021-02-24T01:41:20.000Z |
\/o\/([a-zA-Z0-9]+)\/([a-zA-Z0-9-]+) | https://firebasestorage.googleapis.com/v0/b/geographical-memories-dev.appspot.com/o/Fa4NPIoM5sON70uDJjufgnL5DHY2/01792dcc-4963-4658-a3d0-99073b352e22?alt=media&token=23676a66-ed8d-4b43-9150-6ef3f07544f0
https://firebasestorage.googleapis.com/v0/b/geographical-memories-dev.appspot.com/o/Fa4NPIoM5sON70uDJjufgnL5DHY2/01792dcc-4963-4658-a3d0-99073b352e22?alt=media&token=80a5cc0f-7943-4ef8-ab00-9bef8acd41bf | firebase downloadURL | 2017-08-01T11:41:56.000Z |
|
File name and extension from url | ([^\/.]+)$|([^\/]+)(\.[^\/.]+)$ | https://www.booking.com/hotel/hr/boban-luxury-suites.th.html | File name and extension from url | 2019-02-18T13:14:07.000Z |
[0-9a-z !]* | Hello world !
Hello world !
Hello world ! | Hello world ! | 2013-09-10T09:01:21.000Z |
|
(
(\s*[a-zA-Z]\w*\s*)
:
(
(\s*
([a-fA-F0-9])+|
("(?:[^"\\]|\\.)*")
\s*)|
(\s*,\s*)
)+
\s*;\s*
)+
\s*.$
| ident1:1fabcd,dfece,"teste de string",0;
ident2: 3984, a763af;
ident3 : 0 , "string com \" (aspas)" , faca , da0e , 0 ;
. | Exploding regex | 2014-11-11T18:06:32.000Z |
|
string ([0-9]+) | et more random textra ra rastring 654321hey hey my my | http://stackoverflow.com/a/34526907/3936440 | 2015-12-30T09:46:08.000Z |
|
Insert double quotes between matches around colons.
You need to wrap substition.substr(1)+'"' with parenthesis afterwards. (substr is needed to remove hanging doublequote at the start of the string)
ex)
var json = '{ '+json_ish.replace(regex,subs).substr(1)+'" }';
I made this regex to validate and parse google spreadsheet's json-ish feed.
Please use with care, this is not tested througly.
inspired from http://stackoverflow.com/a/25146087 | ({|,)?\s*'?([A-Za-z_$\.][A-Za-z0-9_ \-\.$]*)'?\s*:\s* | category: ARTS, name: 아트리스케이프, address: 서울 서대문구 신촌로3나길 7-15, geolatitude: 37.5595064, geolongitude: 126.9303036, brief: 다양한 문화울의 경험과 정보를 공유하고 소통하는 소셜 아트플랫폼 , phone: 02-325-1235, email: [email protected] , url: artrescape.com/, tag: 예술 | JSON Double Quoting | 2015-10-13T01:19:50.000Z |
List total tag | (<p class="outline"><outline><\/p>)(.*)(<p class="outline-end"><outline-end><\/p>) | <p class="outline"><outline></p>
<p class="list">Chapter Outline</p>
<p class="txt">General Aspects of Gingival Epithelium Biology</p>
<p class="list"><list></p>
<p class="txt">Development of Gingival Sulcus</p>
<p class="list-end"><list-end></p>
<p class="txt">Cuticular Structures on the Tooth</p>
<p class="list"><list></p>
<p class="txt">Gingival Fluid (Sulcular Fluid)</p>
<p class="txt">Oral (Outer) Epithelium</p>
<p class="list-end"><list-end></p>
<p class="txt">Clinical Features</p>
<p class="txt">Marginal Gingiva</p>
<p class="txt">Interdental Gingiva</p>
<p class="txt">Conclusion</p>
<p class="list-end"><list-end></p>
<p class="outline-end"><outline-end></p>
| List open to close | 2016-07-30T13:08:46.000Z |
For full url. | (\b)(https?:\/\/)(www.)?[\w-]{2,}\.[a-zA-Z\-0-9]{1,}[\w\/\.\?\=\&\#\-\%\+]*(\b) | http://127.0.0.1/openserver/phpmyadmin/sql.php?db=projectx&table=messages&sql_query=SELECT+%2A+FROM+%60messages%60&message_to_show=%D0%97%D0%B0%D0%BF%D0%B8%D1%81%D1%8C+%D0%B1%D1%8B%D0%BB%D0%B0+%D1%83%D0%B4%D0%B0%D0%BB%D0%B5%D0%BD%D0%B0&goto=tbl_sql.php&token=81b4b5c88dae1706231d6cd2ab925edb&message=%D0%A3%D0%B4%D0%B0%D0%BB%D0%B5%D0%BD%D0%B0+1+%D1%81%D1%82%D1%80%D0%BE%D0%BA%D0%B0.+%28%D0%97%D0%B0%D0%BF%D1%80%D0%BE%D1%81+%D0%B7%D0%B0%D0%BD%D1%8F%D0%BB+0.1904+%D1%81%D0%B5%D0%BA.%29
sd fs | Full url | 2016-06-22T14:17:13.000Z |
function (?:(?!pixo).)* \{ |
function pixo_asdfsdf {
}
function scope_asdfsdf {
}
function asdfsdf {
}
| function not prefixed | 2016-01-10T08:28:27.000Z |
|
^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\d{8}$ | 13699146887
| 手机号 | 2019-03-05T01:56:29.000Z |
|
(\<li\>\<a target.+?\>)(.+)(\<\/a\>\<\/li\>) | (\<li\>\<a target.+?\>)(.+)(\<\/a\>\<\/li\>) | Функция Blue
Функция ChrW [VBA]
Функция CreateUnoDialog
Функция CurDir
Функция Дата
Функция DateSerial
Функция DateValue
Функция Day
Функция DDB [VBA]
Функция Dir
Функция Eof
Функции обработки ошибок
Функция FileAttr
Функция FileDateTime
Функция FileExists
Функция FileLen
Функция FormatDateTime [VBA]
Функция FormatNumber [VBA]
Функция FreeFile
Функция FV [VBA]
Функция GetAttr
Функция Green
Функция InStrRev [VBA]
Функция Input [VBA]
Функция InputBox
Функция IPmt [VBA]
Функция IRR [VBA]
Функция Loc
Функция Lof
Функция MIRR [VBA]
Функция Month
Функция MonthName [VBA]
Функция NPer [VBA]
Функция NPV [VBA]
Числовые функции
Функция Pmt [VBA]
Функция PPmt [VBA]
Функция PV [VBA]
Функция QBColor
Функция Rate [VBA]
Функция Red
Функция RGB
Функция RGB [VBA]
Функция Round [VBA]
Функция Seek
Функция SLN [VBA]
Функция StrConv [VBA]
Функция StrReverse [VBA]
Функция SYD [VBA]
Функция WeekDay
Функция WeekdayName [VBA] | Функции с сайта | 2023-11-07T06:17:52.000Z |
^(?'Fare'(?'IgnoreProfix'[A-Z]+-|\/[A-Z]+)?(?'ItineraryDate'(?'Date'\d{2})(?'Month'[A-Z]{3})(?'Year'\d{2}))?(?'Origin'[A-Z]{3})?\s?(?'Airline'(.[0-9A-Z]{3})|([0-9A-Z]{2}))\s(?'Connection'[X][\/])?((?'CodeECity'E\/)|(?'CodeB'B\/)|(?'CodeT'T\/)|(?'CodeL'L\/))*(?'Destination'([A-Z][\/-])?[A-Z]{3})?(?!\d{1,3}[A-LN-RT-Z\s])\s?(?'SegmentBaseEMS'\d+M\s?)?(?'SegmentBase'(?![0-9][A-Z])\d{1,6}(\.\d{1,4})?\s?)?(((?'CodeENoCity'E\/XXX)|(?'SegmentFeeQ'[Q](\s?(?'QCity1'[A-Z]{3})(?'QCity2'[A-Z]{3}))?(?'SegmentFeeQEMS'\d+M)?(?'FeeAmountQ'\d{1,6}(\.\d{1,4})?))|(?'MilePrinciple'M\s?(?'MilePrincipleCityPair'[A-Z]{6})?\s?(?'MilePrincipleMile'\d{1,6}(\.\d{1,4})?)?)|(?'SegmentFeeR'[R](?'SegmentFeeREMS'\d+M)?(?'FeeAmountR'\d{1,6}(\.\d{1,4})?))|(?'SegmentFeeS'(?'SegmentFeeSCnt'[0-9])*S(?'SegmentFeeSEMS'\d+M)?(?'FeeAmountS'\d{1,6}(\.\d{1,4})?))|(M?\/(?'ITFare'IT))|(M?\/(?'BTFare'BT))|(\/\/(?'UnflownIncludeCity'[A-Z]{3})))\s?)*(?'SegmentBaseEMS1'\d+M\s?)?(?'SegmentBase1'(?![0-9][A-Z])\d{1,6}(\.\d{1,4})?\s?)?(?'FareBasis'(?<=[0-9])((?![A-Z][A-Z0-9]\s([A-Z]\/)?[A-Z]{3}|NUC|END|[A-Z]{3}\s[0-9])|(?=[A-Z][A-Z0-9]\sNUC))[A-Z][A-Z0-9\/]{0,8})?(\s?((?'SegmentFeeQ1'[Q](?'SegmentFeeQEMS1'\d+M)?(?'FeeAmountQ1'\d{1,6}(\.\d{1,4})?))|(?'CPMC'P\sR\/(?'CPMCCity1'[A-Z]{3})(\/)?(?'CPMCCity2'[A-Z]{3})?\s?(?'CPMCEMS'\d+M)?(?'CPMCAmt'\d{1,6}(\.\d{1,4})?))|(?'CodeP'P\s(?'CodePCityPair1'[A-Z]{6})\s?(?'CodePCityPair2'[A-Z]{6})?\s?(?'CodePEMS'\d+M)?(?'CodePAmt'\d{1,6}(\.\d{1,4})?))|(?'MilePrinciple1'M\s?(?'MilePrincipleCityPair1'[A-Z]{6})?\s?(?'MilePrincipleMile1'\d{1,6}(\.\d{1,4})?)?)|(?'OSC'H\s(?'OSCCityPair'[A-Z]{6})\s?(?'OSCAmt'\d{1,6}(\.\d{1,4})?))|(?'RSC'U\s(\s?(?'RSCCityPair'[A-Z]{6}))+\s?(?'RSCAmt'\d{1,6}(\.\d{1,4})?))|(?'LCP'C\/(?'LCPCity'[A-Z]{3})(?'LCPCityPair'\s?[A-Z]{6})*\s?(?'LCPAmt'\d{1,6}(\.\d{1,4})?))|(?'HighClassDifferential'D\s(((?'ClassCode'[A-Z])+\/)?(?'HCDCityPair'[A-Z]{6})\s?((M)|(?'HCDEMS'\d+M)|\s|(?'HCDAmt'\d{1,6}(\.\d{1,4})?))\s?)+)|(\/-(?'UnflownExcludeCity'[A-Z]{3}))|(\/\/(?'UnflownIncludeCity1'[A-Z]{3})))?\s?)*)+\s?((?'NUC'\s?([A-Z]{3})\s?(?'BaseTotal'\d{1,6}(\.\d{1,4})?))\s?)?(END\s?(?'Exch'ROE\s?\d+(\.\d+)?)?)? | HKG UB RGN147.53 UB HKG140.48 NUC288.01 | Fair calc | 2018-04-21T01:33:41.000Z |
|
该正则表示对的是匹配location对象下的 host、hostname、href、protocol、origin、port 属性前对象匹配,
例如匹配:
1. a.href
2. location.href
3. getTop().location.href
| \b([\w$]+(\([^()]*(\([^()]*\)[^()]*)*\)|\[[^\[\]]+\])?\.)+(?:host|hostname|href|protocol|origin|port)\b | 1. 匹配简单的 location 属性
location.href
top.location.href
a || location.href
b && location.href
(location.href)
(b && location.href)
1.1 复杂的 location 属性操作
window != getTop() && getTop().location.replace(window.location.href)
setTimeout("location.replace(location.href.split(\"#\")[0])",2000);
protocol: a.protocol ? a.protocol.replace(/:$/, "") : "",
$.juqeyr().location.href
onclick="startIFrame.location.href = \'docbox://'+dkid+'\'"
2. 匹配通过方法操作 location 属性
getTop().location.href
getLocation(xxx).href = 'xxx'
getLocation(xxx, xxx(), xxx()).href = 'xxx'
getLocation(get(xxx), this).href = 'xxx'
test(window.location.hostname)){window.location.href="\x68\x74\x74\x70\x73\x3a\x2f\x2f\x7
encodeURIComponent(proxyLoc(window.location).href)
3. 匹配通过方括号操作 location 属性
iframe["xxx"].location.href = 'xxx'
iframe['xxx'].location.href = 'xxx'
iframe[xxx].location.href = 'xxx'
iframe[xxx+adb].location.href = 'xxx'
(window || top.window).location.href
!c.history || h && f ? (h || (Oa = b), d ? l.replace(b) : h ? (d = l, e = b.indexOf("#")
| 匹配属性的对象 | 2019-05-07T15:29:36.000Z |
This helps matching numbers where decimals are optional | ^[0-9]{0,4}(?(?=\.)\.\d{0,2}) | Match range [1 ... 9999.99] | 2022-05-28T13:00:13.000Z |
|
Find all BR tags in a string | (<br\ ?\/?>)+ | adas<br />vewerg<br>
<br/>ibui<h1> | Find all BR tags in a string | 2015-05-29T10:47:47.000Z |
LG G3
Device identifier:LG-D855, LG-D851, LG-D850, VS985 4G, LGLS990, LGUS990, LG-D852 | LG-D85(5|0|2|1) |LG(L|U)S990|VS985 | Mozilla/5.0 (Linux; U; Android 5.0; iw-il; LG-D855 Build/LRX21R.A1424924275) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0
Mozilla/5.0 (Linux; Android 5.0.1; LG-D851 Build/LRX21Y; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0
Mozilla/5.0 (Linux; U; Android 5.0; en-us; LG-D850 Build/LRX21R) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0
Mozilla/5.0 (Linux; Android 5.0.1; VS985 4G Build/LRX21Y) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.93 Mobile
Mozilla/5.0 (Linux; Android 4.4.2; LGLS990 Build/KVT49L.LS990ZV4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.78
Mozilla/5.0 (Linux; Android 4.4.2; LGUS990 Build/KVT49L.US99010c) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.93
Mozilla/5.0 (Linux; Android 5.0.1; LG-D852 Build/LRX21Y) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.93 Mobile | LG G3 | 2015-07-19T06:16:12.000Z |
(Brian) | Brian
Brian
Brian | brian | 2015-06-02T18:48:52.000Z |
|
Match a http url that contains Mp4 | (http:)[A-Z0-9a-z\.\/_]*(\.mp4) | <img id="clip-4182439" data-hls-src="http://mpegmedia.abc.net.au/abcforkids/video/boj/boj_SneezySnufferoos_MusicVid03_HD.mp4" src="http://www.abc.net.au/reslib/201502/r1390108_19759857.jpg" alt=""> | Find Mp4 URL | 2016-04-09T06:13:58.000Z |
Full email validation with optional "." "-" "_" | ^[\w\d](\.?[\w\d_-])*@[\w\d]+\.([\w]{1,6}\.)?[\w]{2,6}$ | Email Validation | 2015-12-01T22:35:05.000Z |
|
^(\d*)(-)?(\d*)?$ | 3
1000
15-20
20-15
10-20/2
1-1000/20
Above should be legal; this and below should be illegal
3
03
2 43
2x3
23x
15 - 20
15--30
15-03
15-20-30
1 5-20
15-2 0
15-/20
15/2-2
15/10/2 | Don't know how to match this. | 2015-10-15T22:26:33.000Z |
|
Basically take a number and split it into thousands. I.e. take three chars from the end of the number until there is 3 or less chars left. | (?<=\d)(?=(\d{3})+(?!\d)) | 2244511556654445454454566436 | Split number by thousands | 2015-11-30T13:47:08.000Z |
rips all phones out of memo/text block
stores by | \(?\b([2-9]{1}[0-9]{2})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})\b | phone 908-273-7600 work
+1 973-477-0300 internation | rxPhones | 2016-09-22T01:24:48.000Z |
[a-zA-Z$_][a-zA-Z\d_]* | javascript variable | 2014-03-25T23:22:52.000Z |
||
This converts CMT Global Standard format to CMT for bb.m MATLAB | (?<name>.+)
(?<date>.+)
Lat=\s*(?<lat>-?\d+\.\d*)\s*Lon=\s*(?<lon>-?\d+\.\d*)
(?<dep>.+)
(?<dt>.+)
Moment Tensor: Expo=\d+\s*(?<cmt>.+)
.+
.+
(?<faultPlane>.+strike=(?<strike>-?\d+\.?\d*)\s*dip=(?<dip>-?\d+\.?\d*)\s*slip=(?<slip>-?\d+\.?\d*)) | 010176A KERMADEC ISLANDS REGION
Date: 1976/ 1/ 1 Centroid Time: 1:29:53.4 GMT
Lat= -29.25 Lon=-176.96
Depth= 47.8 Half duration= 9.4
Centroid time minus hypocenter time: 13.8
Moment Tensor: Expo=26 7.680 0.090 -7.770 1.390 4.520 -3.260
Mw = 7.3 mb = 6.2 Ms = 0.0 Scalar Moment = 9.56e+26
Fault plane: strike=202 dip=30 slip=93
Fault plane: strike=18 dip=60 slip=88
010576A PERU
Date: 1976/ 1/ 5 Centroid Time: 2:31:44.7 GMT
Lat= -13.42 Lon= -75.14
Depth= 85.4 Half duration= 1.6
Centroid time minus hypocenter time: 8.4
Moment Tensor: Expo=24 -1.780 -0.590 2.370 -1.280 1.970 -2.900
Mw = 5.7 mb = 6.0 Ms = 0.0 Scalar Moment = 3.79e+24
Fault plane: strike=350 dip=28 slip=-60
Fault plane: strike=137 dip=66 slip=-105
010676A OFF EAST COAST OF KAMCHA
Date: 1976/ 1/ 6 Centroid Time: 21: 8:25.1 GMT
Lat= 51.45 Lon= 159.50
Depth= 15.0 Half duration= 2.8
Centroid time minus hypocenter time: 5.8
Moment Tensor: Expo=25 1.100 -0.300 -0.800 1.050 1.240 -0.560
Mw = 6.1 mb = 5.7 Ms = 6.0 Scalar Moment = 1.98e+25
Fault plane: strike=206 dip=18 slip=78
Fault plane: strike=39 dip=73 slip=94
010976A VANUATU ISLANDS
Date: 1976/ 1/ 9 Centroid Time: 23:54:40.1 GMT
Lat= -15.97 Lon= 167.81
Depth=173.7 Half duration= 3.5
Centroid time minus hypocenter time: 4.5
Moment Tensor: Expo=25 -1.700 2.290 -0.590 -2.330 -1.230 2.010
Mw = 6.3 mb = 6.1 Ms = 0.0 Scalar Moment = 3.64e+25
Fault plane: strike=246 dip=22 slip=-86
Fault plane: strike=62 dip=68 slip=-91
011376A ICELAND REGION
Date: 1976/ 1/13 Centroid Time: 13:29:24.9 GMT
Lat= 66.33 Lon= -16.29
Depth= 15.0 Half duration= 3.4
Centroid time minus hypocenter time: 5.4
Moment Tensor: Expo=25 -0.510 -2.860 3.370 0.050 -0.780 -0.860
Mw = 6.3 mb = 6.0 Ms = 6.4 Scalar Moment = 3.3e+25
Fault plane: strike=127 dip=82 slip=173
Fault plane: strike=218 dip=83 slip=9
011476A KERMADEC ISLANDS
Date: 1976/ 1/14 Centroid Time: 15:56: 7.5 GMT
Lat= -29.69 Lon=-177.04
Depth= 46.7 Half duration=20.0
Centroid time minus hypocenter time: 32.6
Moment Tensor: Expo=27 4.780 -0.490 -4.300 0.830 3.620 -1.320
Mw = 7.8 mb = 6.3 Ms = 0.0 Scalar Moment = 6.02e+27
Fault plane: strike=200 dip=26 slip=95
Fault plane: strike=15 dip=64 slip=88
011476B KERMADEC ISLANDS REGION
Date: 1976/ 1/14 Centroid Time: 16:47:44.8 GMT
Lat= -28.72 Lon=-176.75
Depth= 17.7 Half duration=20.5
Centroid time minus hypocenter time: 11.3
Moment Tensor: Expo=27 2.560 0.180 -2.740 3.580 6.770 -1.230
Mw = 7.9 mb = 6.5 Ms = 8.0 Scalar Moment = 8.18e+27
Fault plane: strike=189 dip=11 slip=71
Fault plane: strike=28 dip=80 slip=93
011476C KERMADEC ISLANDS REGION
Date: 1976/ 1/14 Centroid Time: 22:43:50.7 GMT
Lat= -28.61 Lon=-176.62
Depth= 15.0 Half duration= 3.7
Centroid time minus hypocenter time: 7.6
Moment Tensor: Expo=25 2.340 0.240 -2.580 0.620 3.710 -0.680
Mw = 6.4 mb = 5.5 Ms = 6.3 Scalar Moment = 4.54e+25
Fault plane: strike=197 dip=17 slip=97
Fault plane: strike=10 dip=73 slip=88
011576A KERMADEC ISLANDS REGION
Date: 1976/ 1/15 Centroid Time: 6: 6:51.9 GMT
Lat= -30.25 Lon=-176.63
Depth= 15.0 Half duration= 2.8
Centroid time minus hypocenter time: 5.8
Moment Tensor: Expo=25 1.440 0.060 -1.500 0.300 1.180 -0.460
Mw = 6.1 mb = 5.3 Ms = 6.2 Scalar Moment = 1.96e+25
Fault plane: strike=196 dip=26 slip=91
Fault plane: strike=15 dip=64 slip=89 | CMT | 2018-08-30T21:31:00.000Z |
<p>(.*)<\/p> | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
xxxx
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="calibre:cover" content="true"/>
<title>Cover</title>
<style type="text/css" title="override_css">
@page {padding: 0pt; margin:0pt}
body { text-align: center; padding:0pt; margin: 0pt; }
</style>
</head>
<body>
<div>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="100%" height="100%" viewBox="0 0 566 734" preserveAspectRatio="none">
<p>
1
2
3
4
5
</p>
<image width="566" height="734" xlink:href="../Images/cover.jpeg"/>
yyyy
</svg>
</div>
</body>
</html> | Find between <p> ??? </p> | 2018-07-20T20:49:30.000Z |
|
[ \t]+\$[ ]*(?P<in_line>[^$\n]+?)[ \t]*\$[ \t]+ | Lorem ipsum dolor sit ame $ a = \{ b, c \} $ Lorem 100 \$ ipsum
$$ \left \{
\begin{array}{cl}y_1 =&3 x_1 - x_2 + x_3\\y_2 =&2 x_2\\y_3 =&x_1 - x_2 + 3 x_3\end{array}
\right.
\Leftrightarrow \left \{
\begin{array}{cl}8 x_1 =&3 y_1 + y_2 -y_3\\8 x_2 =&4 y_2\\8 x_3 =&-y_1 + y_2 + 3 y_3\end{array}
\right.
$$
Lorem ipsum dolor
$$ \left \{
\begin{array}{cl}y_1 =&3 x_1 - x_2 + x_3\\y_2 =&2 x_2\\y_3 =&x_1 - x_2 + 3 x_3\end{array}
\right.
\Leftrightarrow \left \{
\begin{array}{cl}8 x_1 =&3 y_1 + y_2 -y_3\\8 x_2 =&4 y_2\\8 x_3 =&-y_1 + y_2 + 3 y_3\end{array}
\right.
$$
Lorem ipsum dolor $$$ Lorem ipsum dolor $$$. foo sit ame $ a = \{ b, c \} $
Il s'installe en ligne de commande avec le gestionnaire de paquets `opam`:
$ opam update
$ opam install hevea
| in line $ $ (latex equation) | 2018-09-08T10:41:37.000Z |
|
\$[A-Za-z]{0,4}[0-9]{0,1} | # This is test program 1. This program does nothing useful.
add $s0, $0, $zero
addi $t0, $t0, 100#test comment
addi $a0, $a0,100
test: add $s0, $s0, $a0 # this is a comment
addi $a0, $a0, -1
bne $a0, $0, test # this is another comment
addi $a0, $a0, 100
test1:
#test comment
lw $a0, 8($a1)
sw $a0,4($a1)
j test1
jr $ra
jal test1
slt$t0,$a0,$a1
beq$t0,$t1,test
sub $t3, $t1, $t1
sll $a0, $a1, 2
| register | 2017-04-19T04:16:36.000Z |
|
Match an e-ITCD protocol inside a list | (\d{2}\.\d{3}\.\d{7}\-\d) | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ut pharetra justo. Aliquam lobortis pretium metus, nec gravida lacus lobortis vitae. Curabitur vitae arcu facilisis turpis ultricies molestie. Interdum et malesuada fames ac ante ipsum primis in faucibus. Praesent dictum est sit amet mauris finibus interdum. Duis vel erat felis. Maecenas efficitur dictum scelerisque. Ut semper magna mauris, in interdum nisi blandit quis. Maecenas enim urna, tempor vitae tellus ac, vehicula porttitor est. Sed non dolor dolor. Vivamus sed ligula ut quam tristi23.001.0014094-6que molestie. Ut scelerisque metus a justo feugiat finibus. Nulla nec enim pretium, faucibus justo quis, luctus urna.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ut pharetra justo. Aliquam lobortis pretium metus, nec gravida lacus lobortis vitae. Curabitur vitae arcu facilisis turpis ultricies molestie. Interdum et malesuada fames ac ante ipsum primis in faucibus. Praesent dictum est sit amet mauris finibus interdum. Duis vel erat felis. Maecenas efficitur dictum scelerisque. Ut semper magna mauris, in interdum nisi blandit quis. Maecenas enim urna, tempor vitae tellus ac, vehicula porttitor est. Sed non dolor dolor. Vivamus sed ligula ut quam tristi23.001.0014094-6que molestie. Ut scelerisque metus a justo feugiat finibus. Nulla nec enim pretium, faucibus justo quis, luctus urna.
Suspendisse accumsan quis dui vel faucibus. Nulla lacinia odio in enim ultrices volutpat et eget mauris. Morbi rutrum, ante tincidunt consequat elementum, ipsum leo pellentesque nulla, et cursus elit felis finibus turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed tincidunt vitae odio vitae vulputate. Quisque euismod laoreet ipsum at congue. Praesent faucibus lacinia leo sit amet hendrerit.
Fusce ac enim vel justo commodo vulputate in at odio. Ut suscipit, velit id pellentesque interdum, massa libero commodo ex, non pharetra lacus sapien ac nisi. In pulvinar ullamcorper sapien eget vehicula. Pellentesque est turpis, hendrerit vitae mauris vitae, rhoncus cursus leo. Ut aliquam egestas nibh ut semper. Nullam lectus diam, malesuada quis sodales at, sagittis at lorem. Ut commodo lorem auctor felis egestas venenatis. Quisque commodo, nisl quis o23.001.0002851-8
rnare condimentum, nulla elit sodales eros, a lobortis metus nibh vitae urna. Ut orci lacus, molestie sit amet arcu sit amet, mattis scelerisque nunc.
Nullam id fringilla nulla, vitae vehicula elit. Phasellus maximus eros ipsum, at dictum erat fermentum nec. Curabitur quis dui id dolor suscipit ves23.001.0014072-5tibulum. Cras aliquet mi nec luctus ornare. Proin ultricies iaculis ligula vitae interdum. Sed scelerisque tortor id rhoncus semper. Nulla cursus condimentum mollis. Phasellus ut maximus odio, vitae ullamcorper mauris. Nullam aliquet facilisis diam, eu fermentum elit efficitur at.
Phasellus viverra vehicula velit, id dictum dolor aliquam et. Aenean nec lobortis lacus. Maecenas ac purus sed turpis commodo porta sed eu metus. Quisque interdum ante eu neque tincidunt, vitae luctus tortor pretium. Cras sit amet arcu velit. Praesent pretium urna gravida libero dignissim finibus. Cras mollis semper ante eu elementum. Vivamus egestas volutpat egestas23.001.0015938-8. | e_itcd_protocol_match | 2023-08-01T12:52:45.000Z |
Not allowing strings that start with {{ or and with }} or }}. | ^{{.+}}|{{.+}}\.?$ | {{test
{{test}}
{{test}}.
{{test}}.test
test{{test}}
test{{test}}.
test{{test}}.test
{{test}}test{{test}}
{{test}}test{{test}}.
{{test}}test{{test}}.test
test}}test
test}}.
test}}
| {{ start and and tags }} | 2022-08-23T14:59:28.000Z |
(?:(?:[^\n]+)?)\b(?:(?i:\bTRAVESSA\b|\bACAMPAMENTO\b|\bACESSO\b|\bACUDE\b|\bADRO\b|\bAEROPORTO\b|\bAFLUENTE\b|\bAGLOMERADO\b|\bAGROVILA\b|\bALAGADO\b|\bALAMEDA\b|\bALDEIA\b|\bALEIA\b|\bALTO\b|\bANEL\b|\bANTIGA\b|\bANTIGO\b|\bAREA\b|\bAREAL\b|\bARRAIAL\b|\bARROIO\b|\bARTERIA\b|\bASSENTAMENTO\b|\bATALHO\b|\bATERRO\b|\bAUTODROMO\b|\bAVENIDA\b|\bAV\b|\bBAIA\b|\bBAIRRO\b|\bBAIXA\b|\bBAIXADA\b|\bBAIXADAO\b|\bBAIXAO\b|\bBAIXO\b|\bBALAO\b|\bBALNEARIO\b|\bBARRA\b|\bBARRAGEM\b|\bBARRANCA\b|\bBARRANCO\b|\bBARREIRO\b|\bBARRO\b|\bBECO\b|\bBEIRA\b|\bBEIRADA\b|\bBELVEDERE\b|\bBLOCO\b|\bBOCAINA\b|\bBOQUEIRAO\b|\bBOSQUE\b|\bBOULEVARD\b|\bBREJO\b|\bBURACO\b|\bCABECEIRA\b|\bCACHOEIRA\b|\bCACHOEIRINHA\b|\bCAIS\b|\bCALCADA\b|\bCALCADAO\b|\bCAMINHO\b|\bCAMPO\b|\bCANAL\b|\bCANTEIRO\b|\bCAPAO\b|\bCAPOEIRA\b|\bCARTODROMO\b|\bCENTRAL\b|\CENTRO\b|\bCERCA\b|\bCERRADO\b|\bCERRO\b|\bCHACARA\b|\bCHAPADA\b|\bCHAPADAO\b|\bCHARCO\b|\bCIDADE\b|\bCIRCULAR\b|\bCOHAB\b|\bCOLINA\b|\bCOLONIA\b|\bCOMUNIDADE\b|\bCONDOMINIO\b|\bCONJUNTO\b|\bCONTINUACAO\b|\bCONTORNO\b|\bCORREDOR\b|\bCORREGO\b|\bCOSTA\b|\bCOXILHA\b|\bCRUZAMENTO\b|\bDESCIDA\b|\bDESVIO\b|\bDIQUE\b|\bDISTRITO\b|\bDIVISA\b|\bDIVISAO\b|\bDIVISOR\b|\bEDF\b|\bEDIFICIO\b|\bEIXO\b|\bELEVADO\b|\bENCOSTA\b|\bENGENHO\b|\bENSEADA\b|\ENTRADA\b|\bENTREPOSTO\b|\bENTRONCAMENTO\b|\bESCADA\b|\ESCADAO\b|\bESCADARIA\b|\bESCADINHA\b|\bESPIGAO\b|\bESPLANADA\b|\bESQUINA\b|\bESTAÇÃO\b|\bESTACIONAMENTO\b|\bESTADIO\b|\bESTANCIA\b|\bESTRADA\b|\bEXTENSÃO\b|\bFAIXA\b|\bFAVELA\b|\bFAZENDA\b|\bFEIRA\b|\bFERROVIA\b|\bFINAL\b|\bFLORESTA\b|\bFOLHA\b|\bFONTE\b|\bFORTALEZA\b|\bFORTE\b|\bFREGUESIA\b|\bFUNDOS\b|\bFURO\b|\bGALERIA\b|\bGAMELEIRA\b|\bGARIMPO\b|\bGLEBA\b|\bGRANJA\b|\bGROTA\b|\bHABITACIONAL\b|\bHARAS\b|\bHIPODROMO\b|\bHORTO\b|\bIGARAPE\b|\bILHA\b|\bINVASÃO\b|\bJARDIM\b|\bJARDINETE\b|\bLADEIRA\b|\bLADO\b|\bLAGO\b|\bLAGOA\b|\bLAGOINHA\b|\bLAMEIRA\b|\bLARGO\b|\bLATERAL\b|\bLEITO\b|\bLIGAÇÃO\b|\bLIMEIRA\b|\bLIMITE\b|\bLIMITES\b|\bLINHA\b|\bLOTE\b|\bLOTEAMENTO\b|\bLUGAREJO\b|\bMALOCA\b|\bMANANCIAL\b|\bMANGUE\b|\bMARGEM\b|\bMARGENS\b|\bMARGINAL\b|\bMARINA\b|\bMATA\b|\bMATO\b|\bMODULO\b|\bMONTE\b|\bMORRO\b|\bMURO\b|\bNUCLEO\b|\bOCA\b|\bOLEODUTO\b|\bOLHO\b|\bOLHOS\b|\bORLA\b|\bPAÇO\b|\bPALAFITA\b|\bPANTANO\b|\bPARADA\b|\bPARADOURO\b|\bPARALELA\b|\bPARQUE\b|\bPARTICULAR\b|\bPASSAGEM\b|\bPASSARELA\b|\bPASSEIO\b|\bPASSO\b|\bPASTO\b|\bPÁTIO\b|\bPAVILHÃO\b|\bPEDRA\b|\bPEDRAS\b|\bPEDREIRA\b|\bPENEDO\b|\bPENHASCO\b|\bPERIMETRAL\b|\bPERIMETRO\b|\bPERTO\b|\bPLANALTO\b|\bPLATAFORMA\b|\bPONTA\b|\bPONTE\b|\bPONTO\b|\bPORTO\b|\bPOSTO\b|\bPOVOADO\b|\bPRACA\b|\bPRAIA\b|\bPROJECAO\b|\bPROJETADA\b|\bPROJETO\b|\bPROLONGAMENTO\b|\bPROPRIEDADE\b|\bPROXIMO\b|\bQUADRA\b|\bQUARTEIRAO\b|\bQUILOMBO\b|\bQUILOMETRO\b|\bQUINTA\b|\bQUINTAS\b|\bRAMAL\b|\bRAMPA\b|\bRANCHO\b|\bRECANTO\b|\bREGIAO\b|\bREPRESA\b|\bRESIDENCIAL\b|\bRETA\b|\bRETIRO\b|\bRETORNO\b|\bRIACHAO\b|\bRIACHO\b|\bRIBANCEIRA\b|\bRIBEIRAO\b|\bRINCAO\b|\bRIO\b|\bROCHA\b|\bROCHEDO\b|\bRODOVIA\b|\bROTATORIA\b|\bROTULA\b|\bRUA\b|\bR\b|\bRUELA\b|\bSACO\b|\bSAIDA\b|\bSANGA\b|\bSEDE\b|\bSERINGAL\b|\bSERRA\b|\bSERTAO\b|\bSERVIDAO\b|\bSETA\b|\bSETOR\b|\bSITIO\b|\bSOPE\b|\bSUBIDA\b|\bSUPERQUADRA\b|\bTAPERA\b|\bTERMINAL\b|\bTERRA\b|\bTERRENO\b|\bTERRENOS\b|\bTRANSVERSAL\b|\bTRAVESSA\b|\bTRAVESSAO\b|\bTRAVESSIA\b|\bTRECHO\b|\bTREVO\b|\bTRILHA\b|\bTRILHO\b|\bTRILHOS\b|\bTRINCHEIRA\b|\bTUNEL\b|\bUNIDADE\b|\bUSINA\b|\bVALA\b|\bVALAO\b|\bVALE\b|\bVARGEM\b|\bVARIANTE\b|\bVARZEA\b|\bVELODROMO\b|\bVEREDA\b|\bVERTENTE\b|\bVIA\b|\bVIADUTO\b|\bVICINAL\b|\bVIELA\b|\bVILA\b|\bVILAREJO\b|\bVOLTA\b|\bZONA\b)\.?)(?:(?:(?:[ \t\x0B\f\r]+\S+)))\b(?:(?:[^\n](?:.+?\n)|(?:.+?\Z))) | Rua 15 de novembro de São Paulo comprou uma jaqueta amarela que foi lavada.
Travessa São João .
Avenida das acácia, 999, Oitavão, São Paulo, SP 91110000.
Av 11 De Fevereiro 1 Sala 2 Centro, São Paulo SP 91110000.
Avenida das acácia, 999, São Paulo, Oitavão, Brasil.
R. 11 de Fevereiro está na direita do condado de berkley.
Avenida Paulista, nº 550, São Paulo, cep: 95100 000, Brasil.
Avenida Lins de Vasconcelos, 234; Avenida Paulista, 316, apartamento 13.
Conforme Av. Do Cadilac, 666 - Bairro Alegre, 12345-678, Cidade Alegre, SP.
av do Cadilac, 666 - bairro Alegre, 12345-678, Cidade Alegre, SP
Rio de Janeiro adsasd asdad. rio 123.
Otávio comprou na galeria de endereço av 10 De Fevereiro, São Paulo SP 11110000 e depois seguiu com as compras na cidade de Gramado procurando um novo enderço Rua Getulio Vargas.
Juliana Emanuela da Luz Souza portadora do CPF 008.543.213-30, recebe um salário de 1500,30 reais.
Atualmente mora na Avenida dos logradouros 467 número 14, São Leopoldo e, por 40 horas é empregada na empresa Cristal Serrano com o CNPJ 13.123.321/4133-44.
De acordo com o seu cadastro, possui o seguinte telefone de contato +55 (54) 99166-6508.
Conforme vem a solicitar a Receita Federal é indicado que por meio deste documento disposto para o contribuinte de RG 183654527, uma multa no valor de 54 dólares seja cobrada por não possuir a CNH de número 10234556378 e carteira de trabalho 123 45678 91 0 validadas de acordo com a lei atribuída na tribuna com o endereço Avenida Júlio de Castilhos número 45000.
Conforme sentenciado pelo juiz Carlos Romano de Freitas Pereira da Silva. As informações do indivíduo estão dispostas no email [email protected].
Para fazer acesso ao email é necessário configurar o computador com que fique com o IPV4 utilizado seja 112.128.52.10 e o IPV6 deve ser 2001:ca8:0:1fe1::200. Para acessar a conta é necessário que o contribuinte utilize o número disposto na carteira de trabalho sendo esta 123.45678.91-0 e o número do passaporte sendo este CS123456. É importante que o usuário comprove os dados utilizando o número do título de eleitor 1234 5678 9101. O valor final que deverá ser pago deve corresponder a um valor simbólico de 7.891,12 brl.
É Importante destacar a necessidade de mostrar o RG 123456789 e a CNH 12345678910.
| Address (Paragraph) | 2021-03-02T22:03:40.000Z |
|
Parses data to match IPv4 addresses along with CIDR mask. | ([\d{1,3}\.]+)\/(\d{2}) | 192.168.1.0/24 | Match IPv4 with CIDR mask | 2023-02-27T08:37:16.000Z |
(?:(?<class>.*)\::(?<method>[^|\n]+)(?:\||\n|$)+)?(?:(?<key>[^\|\;\=]+)\=(?<value>[^\|\;\n]+))? | App\Models\Page::methodName|par1=val1;par2=val2;par3=1
App\Models\Page::create|title=Page Title;content=Lorem text page
route::page.open|page=home
App\User::delete
| Parse group and subgroup names with parameters | 2018-06-24T06:05:27.000Z |
|
I didn't find any good (any easy) ones. So here you go ^^ | (([0-9]{1,3})(\.)([0-9]{1,3})(\.)([0-9]{1,3})(\.)([0-9]{1,3})) | 127.0.0.1 | IPv4 | 2016-04-13T18:52:21.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.