description
stringlengths 0
8.24k
| regex
stringlengths 1
26.3k
| text
stringlengths 0
2.47M
⌀ | title
stringlengths 1
150
| created_at
stringlengths 24
24
|
---|---|---|---|---|
seperates url path and query | ^\/?(?<module>.+?)(?:\/?\?(?<query>.+))?$ | qw/e?asdasdad=asd
/zxczxc/asd/?asd
/ert
qaz | url segments seperation | 2015-12-25T13:14:36.000Z |
\b([0-9]{1,2})\.[0-9]{1,2}\.[0-9]{3,4}[\.]{0,1}[0-9]{0,4} | Microsoft SQL Server 2008 (SP1) - 10.0.2531.0 (X64) Mar 29 2009 10:11:52
Copyright (c) 1988-2008 Microsoft Corporation
Express Edition (64-bit) on Windows NT 6.1 <X64> (Build 7600: )
↓SQL Server 2016 – 13.00.900.73 (CTP3.2)
↓SQL Server 2014 12.00.2000.8 12.0.4100.1 12.0.4436.0 (SP1 CU4)
↓SQL Server 2012 11.00.2100.60 11.00.3000 11.00.5058 11.00.6020 11.0.6020 (SP3)
↓SQL Server 2008R2 10.50.1600.1 10.50.2500 10.50.4000 10.50.6000 10.50.6529 (MS15-058)
↓SQL Server 2008 10.00.1600.22 10.00.2531 10.00.4000 10.00.5500 10.00.6000 10.00.6535 (MS15-058)
↓SQL Server 2005 9.00.1399.06 9.00.2047 9.00.3042 9.00.4035 9.00.5000 9.00.5324 (MS12-070)
↓SQL Server 2000 8.00.194 8.00.384 8.00.532 8.00.760 8.00.2039 8.00.2305 (MS12-060)
↓SQL Server 7.0 7.0.623 7.0.699 7.0.842 7.00.961 7.00.1063 7.00.1152 (MS08-040) | Sql Server Version Number | 2015-12-31T01:04:20.000Z |
|
RegExp to match that user has entered at least 2-letters (including international letters) in a field | ^([\p{L}][^\p{L}]*){2,}$ | Àmy Wînëhousé
Regular Name
| Match at least 2-letters (international) | 2015-06-30T19:36:09.000Z |
\/\*\*((.|\n)*?)\*\/\n(.*) | /**
* Create new app
* @param {string} name - App name
* @param {Object} [options] - Additional app options
* @param {string} [options.version] - App version
* @param {string[]} [options.ids] - Array of app ids. Only requests with supported app ids will be handled
*/
function createApp(name, options) {
return whatever;
}
/**
* Sets handler to be called on application start
* @param {function} handler - Handler to be called when app is started without intent
*/
app.onStart = (handler) => {
handlers.onStart = handler;
};
/**
* Sets handler to be called on default action fail
* @param {function} handler - Default handler to be called when action can not be invoked
*/
const defaultActionFail = (handler) => {
handlers.defaultActionFail = handler;
}; | jsDoc parser | 2016-08-11T14:57:07.000Z |
|
d+ von d+ | digits | 2016-05-10T14:13:02.000Z |
||
\w{4,6}:nil="true" xmlns.*\/> |
<SonOlcumIstasyon d3p1:nil="true" xmlns:d3p1="http://www.w3.org/2001/XMLSchema-instance" />
| remove xxxx:nil="true... | 2017-05-19T17:36:43.000Z |
|
recherche les blocs d'équation latex délimités avec \[ et \] | \\\[\s*(?P<brace_bloc>.*?)\s*\\\] | foo
\[ \left\\{
\begin{array}{cl}3=&1 + 2\\4=&2 + 2\end{array}
\right.
\]
bar | equation latex \[ \] | 2018-09-06T19:45:02.000Z |
to detect date format YYYY-MM-DD
ony starting from 1900 | [1-9][0-9][0-9]{2}-([0][1-9]|[1][0-2])-([1-2][0-9]|[0][1-9]|[3][0-1]) | 2022-07-11 | date format YYYY-MM-DD | 2022-07-06T20:37:52.000Z |
This two-step find-replace routine gets you from
MAX(
MAX(
MAX(
to
exprS = exprS & TrimRight("MAX( ") & _
exprS = exprS & TrimRight(" MAX( ") & _
exprS = exprS & TrimRight(" MAX(") & _ | (?xsm)
(.+) # copy-past replacement to | =IFERROR(
MAX(
INDEX(
raw_wells_prod!R1,
MATCH(
1,
raw_wells_prod!R,
0
)
),
INDEX(
raw_wells_inj!R1,
MATCH(
1,
raw_wells_prod!R,
0
)
)
),
0
) | [code vba] pad string lines with space p1 | 2018-12-13T05:28:16.000Z |
Validates personal names.
Conditions:
1. Must contain only letters (any unicode letter), spaces, apostrophes and hyphens
2. Must not start with a space, an apostrophe or a hyphen
3. Must not contain consecutive uppercase letters
4. Must not contain consecutive spaces
5. Must not contain consecutive apostrophes
6. Must not contain consecutive hyphens
7. Must not contain a space before or after a hyphen
8. Must not contain an apostrophe before or after a hyphen
9. Must not contain enclosing apostrophes ('single quote' style)
10. Must not end with a space or a hyphen
11. Must contain at least one character | ^(?![\x20\x27\x2D]|.*?[\p{Lu}]{2}|.*?[\x20]{2}|.*?[\x27]{2}|.*?[\x2D]{2}|.*?(\x20\x2D|\x2D\x20)|.*?(\x27\x2D|\x2D\x27)|.*?(\x27[\w]+\x27(\x20|$)))[\p{L}\x20\x27\x2D]+$(?<![\x20\x2D]) | Jean-Claude Van Damme
Marcin Różalski
MICKEY MOUSE
Jesus Christ
Arnold 'Terminator' Schwarzenegger
Shaquille O'Neal | Personal name (unicode) | 2017-05-03T12:23:33.000Z |
((<(.)*>)|( |\t)|(\n))* | <p> <p />
<br > <br>
<teste / test teste texto>
< nao funciona | exemplo-flex-4 | 2015-09-05T01:17:44.000Z |
|
A few Australian address parser | ^((?<AddressType>\w+\s*)?(?<Unit>\d+\s*)\/)?(?<StreetNumber>(\s*(\d+\w+)+)|((\s*\d+\s*\-\s*\d+)))(?<StreetNameAndType>(?<StreetType>\s+\w+)+)\s*[,|.]?\s*(?<Suburb>[\w\s]+)\s+(?<PostCode>\d{4})$ | 1 / 124 OLD SOUTH HEAD RD,VAUCLUSE 2030
37A DAINTREE CL, SOUTH BOWENFELS NSW 2790
unit 11/18-22 bernecker st .Carina 4152
445 VICTORIA RD,RYDALMERE 2116
| A few Australian address parser | 2014-11-18T22:42:02.000Z |
<div class="listing-img-container media-cover text-center">[\s\S]*?src="([^"]+?\.jpg) |
<div class="panel-body panel-card-section">
<div class="media">
<a href="/users/show/227945"
class="pull-right media-photo media-round card-profile-picture card-profile-picture-offset">
<img src="https://a0.muscache.com/ic/users/227945/profile_pic/1388936013/original.jpg?interpolation=lanczos-none&crop=w:w;*,*&crop=h:h;*,*&resize=68:*&output-format=jpg&output-quality=70" alt="">
</a>
<a href="/rooms/2945119?s=kOTS" class="text-normal">
<div title="Design 3BDR Rutera Flat by Old Town" class="h5 listing-name text-truncate row-space-top-1">
Design 3BDR Rutera Flat by Old Town
</div>
</a>
<div class="text-muted listing-location text-truncate"><a href="/rooms/2945119?s=kOTS" class="text-normal link-reset">
Entire home/apt · 21 reviews · Staré MÄ›sto, Prague
</a>
</div>
</div>
</div>
</div>
</div>
<div itemscope itemtype="http://schema.org/Enumeration" class="col-6 row-space-1">
<div data-lat="50.08928960447257"
data-lng="14.436735694282277"
data-name="Funky Central Art Apt with Terrace!"
data-url="/rooms/2688532?s=kOTS"
data-user="1037514"
data-id="2688532"
class="listing"
itemscope itemtype="http://schema.org/Enumeration">
<div class="panel-image listing-img">
<a href="/rooms/2688532?s=kOTS" class="media-photo media-cover">
<div class="listing-img-container media-cover text-center">
<img src="https://a0.muscache.com/airbnb/static/page3/v3/room_default_no_photos-d10f15172f4bf511e23e152ece74faaa.png" data-current="0" class="img-responsive-height hide" data-urls="["https://a2.muscache.com/ic/pictures/37070267/7555e7e6_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/35170017/c702a86e_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/37070259/4e7ef180_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/35170032/a0f198c9_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/37070286/2fee34b1_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/35170045/eba1336b_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/37070292/9ee05643_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/35170058/b9dc763d_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/37070298/cac270ba_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/35170068/abed8d24_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/37070305/77f5021f_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/35170087/0fae08f3_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/37070312/70835c4f_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/35170102/4290046e_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/37070326/14068f20_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/35170261/13b250d4_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/37070330/79e9df48_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/35170214/bb9ecd68_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/37070341/bf823f1b_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/35169982/0629a75b_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/37070352/cdf837f3_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/35170120/9e97e996_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/37070369/99ac0d0a_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/35170137/d0623b29_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/37071083/b7f61b16_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/35170162/6ce820a7_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/37071085/6d33eb21_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/35170183/c0016f10_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/37071088/42fafbe0_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/35170201/a196880c_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/37071098/7ad08efd_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/35170299/aac56da5_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/37071881/3a0a19ea_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a0.muscache.com/ic/pictures/35170277/17580bf8_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a2.muscache.com/ic/pictures/35170227/73939649_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70", "https://a1.muscache.com/ic/pictures/35170249/9d975bfb_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70"]">
</div>
</a>
<div class="target-prev target-control block-link">
<i class="icon icon-chevron-left icon-size-2 icon-white"></i>
</div>
<a class="target-details block-link
"
href="/rooms/2688532?s=kOTS"></a>
<div class="panel-overlay-bottom-left panel-overlay-label panel-overlay-listing-label">
<div>
<sup class="h6 text-contrast">Kč</sup>
<span class="h3 price-amount">1007</span>
<sup class="h6 text-contrast"></sup>
</div>
</div>
<div class="target-next target-control block-link">
<i class="icon icon-chevron-right icon-size-2 icon-white"></i>
</div>
<div class="panel-overlay-top-right wl-social-connection-panel">
<span class="rich-toggle wish_list_button wishlist-button"
data-img="https://a2.muscache.com/ic/pictures/37070267/7555e7e6_original.jpg?interpolation=lanczos-none&size=x_medium&output-format=jpg&output-quality=70"
data-name="Funky Central Art Apt with Terrace!"
data-address="Josefov, Prague"
data-hosting_id="2688532">
<input type="checkbox"
id="wishlist-widget-2688532"
name="wishlist-widget-2688532"
data-for-hosting="2688532">
<label for="wishlist-widget-2688532">
<i class="icon icon-heart icon-pink icon-rausch icon-size-2 rich-toggle-checked"></i>
<i class="icon icon-heart wishlist-heart-unchecked icon-size-2 rich-toggle-unchecked"></i>
<i class="icon icon-heart-alt icon-white icon-size-2"></i>
</label>
</span>
</div>
</div>
<div class="panel-body panel-card-section">
<div class="media">
<a href="/users/show/1037514"
class="pull-right media-photo media-round card-profile-picture card-profile-picture-offset">
<img src="https://a0.muscache.com/ic/users/1037514/profile_pic/1360186418/original.jpg?interpolation=lanczos-none&crop=w:w;*,*&crop=h:h;*,*&resize=68:*&output-format=jpg&output-quality=70" alt="">
</a>
<a href="/rooms/2688532?s=kOTS" class="text-normal">
<div title="Funky Central Art Apt with Terrace!" class="h5 listing-name text-truncate row-space-top-1">
Funky Central Art Apt with Terrace!
</div>
</a>
<div class="text-muted listing-location text-truncate"><a href="/rooms/2688532?s=kOTS" class="text-normal link-reset">
Entire home/apt · 38 reviews · Josefov, Prague
</a>
</div>
</div>
</div>
</div>
</div>
</div>
| Scrape SRC | 2014-11-24T12:16:52.000Z |
|
sso_access_token\s(\S+) | sso_access_token 123
| SSO | 2015-12-23T11:16:38.000Z |
|
Capture all anchor tags url with http and https, excluding ftp links | href=["'](https?:\/\/(?:www\.|(?!www))[^\s\.]+\.[^\s"']{2,}|(?!ftp:\/\/)[^\s]+\.[^\s'"]{2,}) | Yes:
http://google.it
<a href="http://www.it.com">algo</a>
https://something.com
https://www.something.com
<a href="iaaaaaaaat.com">hola</a>
http://something.com
http://www.something.com
<a href='www.it.com'>hola</a>
https://something.gov
<a href='https://www.something.gov'>Hola</a>
http://something.gov
<a href="ftp://longurljapanese.jp">hollaaaa</a>
<a href="it.it">hollaaaa</a>
http://www.something.gov
https://something.org
https://www.something.org
http://something.org
http://www.something.org
https://something.net
https://www.something.net
http://something.net
http://www.something.net
https://something.edu
https://www.something.edu
http://something.edu
http://www.something.edu
https://something.biz
https://www.something.biz
http://something.biz
http://www.something.biz
something.biz
www.something.biz
something.edu
www.something.edu
something.net
www.something.net
something.org
www.something.org
something.gov
www.something.gov
something.com
www.something.com
No:
https://www.something
http://www.something | Capture Anchor Tag urls (http/https) | 2016-09-01T11:30:22.000Z |
Password must have 2 Caps, 2 Smalls, 2 Nums and No space | ^(?!\s)(?=\w*[A-Z]\w*[A-Z])(?!\s)(?=\w*[a-z]\w*[a-z])(?=\w*[0-9]\w*[0-9])\w*$ | Password_Must_Have_2Cap_2Smal_2num_no_space | Password policy filter Rev 2 | 2015-06-13T01:46:39.000Z |
^((?!\/api\/).)*$ | http://test.test/Webseite/api/date/blabla | check url for api | 2018-09-12T11:17:45.000Z |
|
(?<=<tag>)([a-zA-Z\s\w]+)(?=</tag>)
get content between tags | (?<=<tag>)([a-zA-Z\s\w]+)(?=</tag>) | <tag>content between 2 tags</tag> | Content between 2 tag | 2019-02-24T06:35:28.000Z |
[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF] | This is a test OMG its so not funny but after the emoji there will be text >> 😊 😃 << There was an emoji But lets see if this gets copied over. | Emoji escaper | 2019-01-30T15:23:11.000Z |
|
(https\:\\\/\\\/[a-zA-Z]+\.phncdn\.com\\\/videos\\\/[0-9]+\\\/[0-9]+\\\/[0-9]+\\\/720+\_[a-zA-Z0-9]+\_[0-9]+\.mp4\?)+[a-zA-Z0-9=& ]+(?=\"\}) | https:/cm.phncdn.com/videos/201712/06/144220772/720P_1500K_144220772.mp4?a5dcae8e1adc0bdaed975f0d67fb5e0527c20903c5bb57a6cad7e6cb50bc41fbb1152c24e90ee00089707faf83a48b0631cd7479dffc2060a6d86c67ff7a531018f946c76d7a90223ed0660403e56d48f38587e8865385eee2ba6800345b3564d9e57cbdbdbf1c32ab21c291cef1b24de33b36a58cdb8dec435e5ddd | Wtf | 2018-08-10T13:02:52.000Z |
|
Validate Israeli common phone numbers
(simple landline and mobile only, no special / free / premium numbers) | ^0(2|3|4|8|9|7[1-46-9]|5[0-578])[\.-:]?([2-9][0-9]{6})$ | 0712506000 | Israeli Phone Number | 2015-08-06T12:15:56.000Z |
^[a-z0-9]+@[a-z0-9]+\.[a-z]+(\.[a-z])?$ | Test email | 2015-05-22T09:47:31.000Z |
||
電子發票 | [A-Z]{2}\d{8} | AA12345698 | 電子發票 | 2016-08-04T10:47:33.000Z |
Notice that I had to find this _anywhere_ in the string, unlimited times, and account for escaped quotes. | (?P<open_dsq>(?<!\\)["\'])(?P<dsq_value>(?s:\\.|(?!\\|(?P=open_dsq)).)*?)(?P<close_dsq>(?P=open_dsq)) | $single_quoted = 'hello world';
$double_quote = "hi there";
$escaped_single_quote = 'it\'s tricky';
$escaped_double_quotes = "\"it's\" tricky";
| jaswsinc: The second trickiest regex pattern I've ever written | 2015-09-25T02:43:06.000Z |
US zip Code | \d{5}(?:-?\d{4})? | 12344-1243 | US zip Code | 2015-10-13T12:56:14.000Z |
(\{.*\}) | Email Newsletter@media only screen and (max-width: 415px) {table[class=\"main-table\"],table[class=\"main-table\"] .image {width: 100% !important;}table[class=\"main-table\"] .image {max-width:100% !important;height:auto !important;}table[class=\"main-table\"] .row {display:block !important;width:100% !important;margin-bottom:20px !important;}table[class=\"main-table\"] .row .separator {width:20px !important;}table[class=\"main-table\"] .mobile {display: none !important;}table[class=\"main-table\"] .block{display: block !important;}table[class=\"main-table\"] .top-menu{width: 25% !important;}}Thank you for considering the Acura RDX. Check out the latest videos, features, and details from the Acura RDX below.VIEW IN BROWSERNew InventoryCertified Pre-Owned InventoryLease & FinanceHelloThank you for considering the Acura RDX. Check out the latest videos, features, and details from the Acura RDX below.TRIMS & COLORSPHOTO GALLERY360° TOURVIDEOSFEATURESSPECIFICATIONSCOMPETITIVE COMPARISONBUILD AND PRICERDXStarting at $35,270MSRP includes destination and handling279-hp, 3.5-liter, i-VTEC® V-66-spd. Sequential SportShift paddle shiftersFront-wheel driveJewel Eye® LED headlightsRDX with Technology and AcuraWatch Plus PackagesStarting at$40,270MSRP includes destination and handlingCollision Mitigation Braking System™ (CMBS™)Lane Keeping Assist System (LKAS)59Color Multi-information display (MID)Adaptive Cruise Control (ACC)53RDX AWD with Advance PackageStarting at $43,420MSRP includes destination and handlingAWD with Intelligent Control System™9655 SW Canyon RoadPortland, OR97225SALES (866) 985-5966SERVICE (866) 980-4615PARTS (877) 245-7434MSRP includes destination and handlingTO OPT-DOWN OR UNSUBSCRIBE: This e-mail was sent to you because you area valued Ron Tonkin Acura customer. To receive fewer updates or removeyourself from our e-mail program, please unsubscribe. | find all between curved bracets | 2015-12-22T17:19:16.000Z |
|
\"[A-Z].+.+.+(.+)?(.+)?(.+)?\" | "Test"
"Cacaa"
| 3 | 2016-02-29T18:41:17.000Z |
|
Separates Items in a list which is separated by a comma | (\w+?)(?:(,)|$) | REP_FINANZGESCHAEFT,REP_OBJEKT,HALLO,ssss | Comma Separated Values | 2019-01-14T11:04:58.000Z |
I use it so that I don't need to worry about formatting when working with unit tests in Kotlin, which means I don't worry too much about whether this is production quality, but it could be useful in other situations where the desire is to strip whitespace from a JSON object while protecting the values of stings which have whitespace. | \s(?=[\s":{}]) | {
"failure": {
"type": "Blah",
"message": "Unrecognised Message: \"Good job!\" Sir"
}
} | Minify JSON while protecting string value whitespace | 2021-07-13T10:31:03.000Z |
obtiene la marca de vehículos | Marca[s]{0,}[:]{0,}[.]{0,}[ ]{0,}[A-Z]{3,}[ ]{0,}[A-Z]{0,}[ ]{0,}[A-Z]{0,} | RESUMEN DE AUTOMÓVILES RESIDENTES Número de Póliza: 0003098447
Vigencia Desde: 12:00 Hrs. 02/12/2020
Hasta: 12:00 Hrs. 02/12/2021
Fecha de Emisión: 12:00 Hrs. 02/12/2020
DATOS DEL CONTRATANTE
Nombre: AYALA MARTINEZ, JOSE RFC.: AAMJ4410183W0
Domicilio: ANDADOR 17, DPTO. ENTRADA B. RESIDENCIAL ACUEDUCTO C.P.: 7270
DE GUADA. GUSTAVO A. MADERO. CDMX
DATOS DE LA PÓLIZA
Línea: AUTOMÓVILES RESIDENTES Unidades A Riesgo: 1 Prima: $4,000.00
Clave Agente: 95099 Prima Neta: $2,513.45
Nombre: BAJA TU SEGURO AGENTE DE SEGUROS S.A. DE C.V. Financiamiento: $0.00
Forma de pago: ANUAL Gastos de Expedición: $590.00
Moneda: Pesos Gastos de expedición $ 400,00
Exentos de IVA:
I.V.A.: $496.55
Prima Total: $4,000.00
Monterrey (81) 8318 3874
En caso de Siniestro, se puede
reportar a través de nuestra App O llame Ciudad de México (55) 5140 3050
Disponible para iOS y Android Cualquier Parte de la
800 723 4763
República Mexicana
SEGUROS AFIRME S.A. DE C.V., AFIRME GRUPO FINANCIERO (en lo sucesivo la "Institución"), asegura a favor de la persona
arriba citada (en lo sucesivo el "Asegurado") el vehículo descrito en la presente Carátula, contra los riesgos descritos más
adelante y durante la vigencia establecida, sujeto a las condiciones generales y en su caso particulares entregadas junto con esta
Carátula.
En cumplimiento a lo dispuesto en el artículo 202 de la ley de instituciones de seguros y fianzas, la
documentación contractual y la nota técnica que integran este producto, quedaron registradas ante
la comisión nacional de seguros y fianzas, a partir del día 19 de diciembre de 2018, con el número:
CNSF-S0094-0685-2018
En testimonio de lo cual SEGUROS AFIRME, S.A. de C.V., AFIRME GRUPO FINANCIERO, Firma la presente forma en
Monterrey Nuevo León, México
Página: 1CARATULA DE AUTOMÓVILES RESIDENTES Número de Póliza: 0003098447Inciso: 000
Vigencia desde: 12:00 HRS. 02/12/2020
Hasta: 12:00 HRS. 02/12/2021
Fecha de Emisión 12:00 HRS. 02/12/2020
DATOS DEL ASEGURADO
Nombre: AYALA MARTINEZ, JOSE
Domicilio: ANDADOR 17, DPTO. ENTRADA B. RESIDENCIAL R.F.C.: AAMJ4410183W0
ACUEDUCTO DE GUADA. GUSTAVO A. MADERO. CDMX
Contratante: AYALA MARTINEZ, JOSE C.P.: 7270
Conductor: AYALA MARTINEZ, JOSE
DATOS DEL VEHÍCULO
Marca: CHEVROLET Modelo: 2018 Tipo: AUTOMÓVILES
Versión: CHEVROLET AVEO 1.5 LS PAQ A TM Número de Serie: LSGHD52HXJD152678
5
Placas: W17AWP Pasajeros: Número de Motor: HECHO EN CHINA
Uso: PARTICULAR Clave: 1006005601 Tipo de carga:
COBERTURAS LÍMITE MÁXIMO DE DEDUCIBLE PRIMA
RESPONSABILIDAD
DAÑOS MATERIALES VALOR COMERCIAL +10 5 % $ 218,58
ROBO TOTAL VALOR COMERCIAL +10 10 % $ 84,60
RESPONSABILIDAD CIVIL LUC $ 2.500.000,00 $ 499,72
GASTOS MÉDICOS OCUPANTES $ 500.000,00 $ 148,95
ASISTENCIA JURÍDICA AMPARADA $ 200,00
ASISTENCIA VIAL AMPARADA $ 250,00
RESPONSABILIDAD CIVIL EN USA Y CANADÁ AMPARADA $ 0,00
AUTO SIGUE AFIRME AMPARADA $ 550,00
RESPONSABILIDAD CIVIL EN EXCESO POR MUERTE $ 3.000.000,00 $ 167,81
EXENCIÓN DE DEDUCIBLES PERDIDA TOTAL DAÑOS MATERIALES AMPARADA $ 11,16
EXENCIÓN DE DEDUCIBLES POR ROBO TOTAL AMPARADA $ 8,46
EXTENSIÓN DE RESPONSABILIDAD CIVIL CONDUCTOR HABITUAL $ 2.500.000,00 $ 74,96
ACCIDENTES AUTOMOVILÍSTICOS AL CONDUCTOR $ 100.000,00 $ 33,24
AUTO AGENCIA AMPARADA $ 105,01
ROBO PARCIAL AMPARADA $ 160,95
Pagina: 1 | Expresíon para marca | 2021-05-06T16:53:19.000Z |
Find SSLVerify = false | ssl[.]{0,1}verify[ -_\"']{1,6}false['\"\\]{0,3} | Верный текст:
some textssl.verify: false some text
git config http.sslVerify "false"
some textssl.verify: false" some text
some text = "sslVerify \"false\"" some text
some text = "sslVerify \"false\"" some text
some text = sslVerify=false"some text
some text = "sslVerify 'false' some text
some text.sslVerify=\"false\"" some text
some text"sslVerify = \"false\""some text
Не должно проходить валидацию:
some text"sslVerify = some text \"false\""some text
some text"ssl Verify = "false""some text
| Search disabled SSL verification | 2023-11-22T16:33:40.000Z |
^[a-zA-Z0-9\-\_]*+$ | test
test
te st
te-st
te_st
t0st
test-_1
1
2
_
-
+ | Only alphanumeric, underscores and minuses | 2019-07-23T11:40:45.000Z |
|
**Uzbekistan phone codes - regex pattern.** | ^998([378]{2}|(9[013-57-9]))\d{7}$ | 998912434445 | uzbekistan phone regex | 2022-09-15T07:55:26.000Z |
only the begining though | {\"en\": {0,1}(\".+), {0,1}\"\w\w\": {0,1}(\".+\")},{0,1} | {"en": "Male", "es": "Macho"},
{"en": "Female", "es": "Hembra"},
{"en":"Population","es":"Población"},
{"en": "% of total population", "es": "% de la población total"},
{"en": "All cancers", "es": "Todos los cánceres"},
{"en": "All cancers but C44", "es": "Todos los cánceres pero C44"},
{"en": "Number of cases", "es": "Numero de casos"},
{"en": "Age Group", "es": "Grupo de edad"},
{"en": "Year", "es": "Año"},
{"en": "years", "es": "años"},
{"en": "years old", "es": "años"},
{"en": "Age-standardized incidence rate per", "es": "Tasa de incidencia estandarizada por edad por"},
{"en": "Cumulative incidence risk (percent)", "es": "Riesgo de incidencia acumulada (porcentaje)"},
{"en": "cancer sites", "es": "sitios de cáncer"},
{"en": "Time trend analysis need at least 2 years data", "es": "El análisis de tendencia temporal necesita al menos 2 años de datos"},
{"en": "Age at diagnosis", "es": "Edad al diagnóstico"},
{"en": "Estimated annual percentage change", "es": "Cambio porcentual anual estimado"},
{"en": "Regional registries", "es": "Registros regionales"} | json to csv | 2018-12-03T16:31:41.000Z |
(?i)Store number – ([\d\D]*)\n.*StreetA – ([\d\D]*)\n.*City – ([\d\D]*)\n.*State_id – ([\d\D]*)\n.*Postal Code – ([\d\D]*)\n.*Store Name – ([\d\D]*)\n.*Phone Number – ([\d\D]*)\n.*Tax Rates.*\n.*Tax table 1 – ([\d\D]*)\n.*Tax table 2 – ([\d\D]*)\n.*Tax table 3 – ([\d\D]*)\n.*Tax table 4 – ([\d\D]*)\n.*Tax table 5 – ([\d\D]*)\n.*Artistree vendor – ([\d\D]*)\n.*Store Group – ([\d\D]*)\n.*Store Zone number – ([\d\D]*) | FP Team,
Please install the Live database for store 1384. The updates have been completed.
• Store number – 1384
• StreetA – 1275 York Rd, Ste 21A
• City – Gettysburg
• State_id – PA
• Postal Code – 17325-7565
• Store Name – Gettysburg, PA
• Phone Number – (717) 420-8200
• Tax Rates
o Tax table 1 – 6.0000%
o Tax table 2 – 0.0000%
o Tax table 3 – 0.0000%
o Tax table 4 – 0.0000%
o Tax table 5 – N/A
• Artistree vendor – Kernersville
• Store Group – US.201308
• Store Zone number – 2030 | Michael's FP DB Install - Single Match | 2020-05-06T03:35:59.000Z |
|
Extracts and returns the domain name from a given URL. | ^(?:https?:\/\/)?(?:[^@\/\n]+@)?(?:www\.)?([^:\/?\n]+) | https://play.google.com/store/apps/details?id=com.skgames.trafficracer%22
http://mplay.google.co.in/sadfask/asdkfals?dk=10
http://lplay.google.co.in/sadfask/asdkfals?dk=10
http://play.google.co.in/sadfask/asdkfals?dk=10
http://tplay.google.co.in/sadfask/asdkfals?dk=10
http://www.google.co.in/sadfask/asdkfals?dk=10
www.google.co.in/sadfask/asdkfals?dk=10
http://user:[email protected]/?a=b#asdd
https://www.compzets.com?asd=10
www.compzets.com?asd=10 | URL Domain Extractor | 2021-01-22T03:50:36.000Z |
^(personal-loan|yourmortgageapp|lending).wf.com|^wellsfargo.com|^apply.wellsfargo.com | wellsfargo.com
apply.wellsfargo.com
wapppply.wellsfargo.com
test.wellsfargo.com
lending.wf.com
lending-loans.wf.com
yourmortgageapp.wf.com
personal-loan.wf.com
personalloans.wf.com
wellsfargo.com/werasefefraewr/adsfgdsfgsdfrg/dersgesrg | Blend FLow Filter | 2021-02-04T19:55:44.000Z |
|
(?:\s|^)\(?(\d+(\.\d+)?p)\)?(\s|$) | (12.2p)
12.2p
| pitch | 2019-09-19T15:20:21.000Z |
|
Match against number sequence using international `+254` or local `0` prefix. | \+?(254|0)7\d{8} | +254712345678
0712345678
254712345678
+254071234567
+256712345678 | Kenyan phone number | 2018-03-27T07:31:44.000Z |
use for censor phonenumber in comment | ^[a-z][a-z0-9_\.]{5,32}@[a-z0-9]{2,}(\.[a-z0-9]{2,4}){1,2}$ | regex email | 2020-06-18T08:07:45.000Z |
|
cdn.discordapp.com\/attachments\/[\d\w\/]+.(png|jpg|gif) | imgur.com/ghOCjsn
imgur.com/a/Tkyl6
i.imgur.com/ghOCjsn.png
i.imgur.com\/[\d\w]+.(png|jpg|gif)
https://cdn.discordapp.com/attachments/738526872186650694/759759076715528253/image0.jpg
https://cdn.discordapp.com/attachments/650589304308891648/761662319209349140/ww.png
https://cdn.discordapp.com/attachments/764157854512316496/764160227506782228/E.docx | Barb's Stream Image Filter | 2020-10-09T16:39:59.000Z |
|
[^\s<>]+(?![^<]*>) | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" content="text/html;" /><title>Email Newsletter</title></head><body style="font-family: Helvetica, Arial, sans-serif; font-size: 12px">
<p><span style="font-size:14px;"><span style="font-family:arial,helvetica,sans-serif;">Hi %%first_name%% - hope you can join us!<br>
<br>
<a href="https://xfinityflowershow.rsvpify.com/"><img alt="" border="0" height="525" src="http://go.pardot.com/l/292992/2019-02-26/3yvjz3/292992/83766/FlowerShow_Invite_V4.jpg" style="height: 525px; width: 700px; border-width: 0px; border-style: solid;" width="700"></a><br>
<br>
Regards,<br>
%%user_name%%<br>
%%user_email%%<br>
Comcast</span></span><br>
<br>
<br>
<br>
<br>
<br>
<br>
<span style="font-size:10px;"><span style="font-family:arial,helvetica,sans-serif;">If you have received this communication in error or would like to unsubscribe, please click <a href="%%unsubscribe%%">here</a>. </span></span></p>
</body></html> | Exclude anything between <> brackets | 2019-03-05T15:19:36.000Z |
|
Used with Azure Log Analytics | ^(?P<RuleNumber>[\d]+)\s+(?P<Chain>[^\s]+):\s+in:(?P<InputInterface>[^,]+)\s+out:(?P<OutputInterface>[^,]+),\s+(?:src-mac\s+(?P<SourceMacAddress>[^,]+),\s+)?proto\s+(?P<Protocol>\w+)(?:\s+\((?P<Flags>[^)]+)\))?,\s+\[?(?P<SourceAddress>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|[a-f\d:]+)\]?(?::(?P<SourcePort>\d+))?->\[?(?P<DestinationAddress>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|[a-f\d:]+)\]?(?::(?P<DestinationPort>\d+))?,\s+len\s+(?P<Length>\d+)$ | 16 input: in:ether1 out:(unknown 0), src-mac 00:00:5e:00:01:f2, proto UDP, 46.72.18.53:36111->134.249.140.20:1, len 132
16 input: in:ether1 out:(unknown 0), src-mac 00:00:5e:00:01:f2, proto TCP (SYN), 201.1.133.187:19808->134.249.140.20:37215, len 44
14 forward: in:6to4-tunnel1 out:6to4-tunnel1, proto ICMP (type 128, code 0), 2001:4ca0:108:42::1:9->2a01:d0:ffff:4e:72a2:d17a:9c55:ee86, len 16
14 forward: in:6to4-tunnel1 out:6to4-tunnel1, proto ICMP (type 128, code 0), 2001:4ca0:108:42::1:9->2a01:d0:ffff:4e:72a2:d17a:9c55:ee86, len 16
14 forward: in:6to4-tunnel1 out:6to4-tunnel1, proto TCP (SYN), [2001:4ca0:108:42:0:80:6:9]:35646->[2a01:d0:ffff:4e:72a2:d17a:9c55:ee86]:80, len 40 | MikroTik firewall logs | 2019-07-27T13:43:54.000Z |
Heavily inpired by https://stackoverflow.com/questions/6038061/regular-expression-to-find-urls-within-a-string | \/\/(?:[\w_-]+(?:(?:\.[\w_-]+)+))(?:[\w.,@?^=%&:\/~+#-]*[\w@?^=%&\/~+#-])? | <!DOCTYPE html>
<html lang="en">
<head>
<!-- This beautiful and lightning fast landing page was proudly created with Leadpages ( see: https://www.leadpages.net ) and hosted on the Leadpages lead generation platform. -->
<meta charset="utf-8">
<meta name="leadpages-served-by" content="leadpages">
<meta name="leadpages-serving-domain" content="https://ixsystems.leadpages.co">
<meta name="leadpages-stripe-public-key" content="pk_live_R3OLguBtmUzvjaKuwtOa7Kvp">
<meta name="leadpages-merchant-uuid" content="kRYUiDye8gtbxvvVthNnkW">
<meta charset="utf-8">
<script>
window.AnalyticsPropertyID = "rMx3rsBoVfadWMfoLN2z5n";
</script>
<link rel="stylesheet" type="text/css" href="https://ixsystems.leadpages.co/static/lp1483572580/public/css/leadpage.css">
<script>
window.LeadPageData = { "facebookShareURL": { "variable": "facebookShareURL", "dafault": "", "name": "The URL to share on Facebook. Leave blank to share the current page." }, "twitterShareURL": { "variable": "twitterShareURL", "dafault": "", "name": "The URL to share on Twitter. Leave blank to share the current page." }, "googleShareURL": { "variable": "googleShareURL", "dafault": "", "name": "The URL to share on Google+. Leave blank to share the current page." }, "linkedInShareURL": { "variable": "linkedInShareURL", "dafault": "", "name": "The URL to share on LinkedIn. Leave blank to share the current page." } };
</script>
<script type="text/javascript" src="https://ixsystems.leadpages.co/static/lp1483572580/public/js/leadpage.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
</style>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://ixsystems.leadpages.co/f//w5N55HkAEv%252BpK6kOFyh0KJ%252BRqC3JrztqsFbxy0Bc0iNSQCQTWrQMlWdvEiLQEXpYt8gPbmjzAk3KS4AbwJdag%253D%253D%7Ccss/normalize.min.css">
<link rel="stylesheet" type="text/css" href="https://ixsystems.leadpages.co/f//w5N55HkAEv%252BpK6kOFyh0KJ%252BRqC3JrztqsFbxy0Bc0hcHiFxsb3VUc6tIAt5lPy8NykuAG8CXWo%253D%7Ccss/style.css">
<script src="https://ixsystems.leadpages.co/f//w5N55HkAEv%252BpK6kOFyh0KJ%252BRqC3JrztqsFbxy0Bc0jINLrZD2o7qCJeTqzOuwVVkqSGeDambc2fKvbfDci7Jg%253D%253D%7Cjs/html5shiv.js"></script>
<script type="text/javascript" src="http://www.omncdn.com/thankyou/CustomPage2/jeremyquinn/9/jquery.js"></script>
<script type="text/javascript" src="http://www.omncdn.com/thankyou/CustomPage2/jeremyquinn/9/modernizer.js"></script>
<script type="text/javascript" src="http://www.omncdn.com/thankyou/CustomPage2/jeremyquinn/9/function.js"></script>
<link href="http://www.omncdn.com/thankyou/CustomPage2/jeremyquinn/9/style.css" type="text/css" rel="stylesheet">
<style>
.popup {
width: 80%;
margin: 0 auto
}
#pop-head .head {
font-family: "Open Sans Condensed";
font-size: 26px;
color: #545555;
font-weight: 700;
line-height: 30px;
text-align: center;
margin: 20px auto 10px auto
}
.book-small {
float: left;
margin: -60px 10px 0 -50px
}
.popup input#fname,
.popup input#email {
width: 100%;
height: 50px;
font-size: 16px;
line-height: 26px;
color: #989898;
padding: 0;
margin: 5px auto;
border: 1px solid #cacaca;
text-align: center;
-webkit-box-shadow: inset 1px 0px 10px 1px rgba(170, 170, 170, 0.3);
box-shadow: inset 1px 0px 10px 1px rgba(170, 170, 170, 0.3)
}
#pop-footer {
background-color: #d9d9d9;
min-height: 57px;
margin-top: 20px;
padding-top: 10px;
border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
-webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.2)
}
#pop-footer p {
font-size: 14px;
color: #767677;
text-align: center;
margin-bottom: 0
}
.popup .btn {
font-family: 'Open Sans Condensed';
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
filter: dropshadow(color=rgba(0, 0, 0, 0.3), offx=1, offy=1);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fed800), color-stop(1, #f5c800));
background: -moz-linear-gradient(center top, #fed800 5%, #f5c800 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fed800', endColorstr='#f5c800');
background-color: #fed800;
display: block;
margin: 8px auto 0 auto;
position: relative;
min-height: 58px;
width: 100%;
font-weight: 700;
font-size: 30px;
color: #fdfdfd;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border: none;
padding: 10px 20px 15px;
font-size: 30px;
text-align: center
}
.popup .btn:hover {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f5c800), color-stop(1, #fed800));
background: -moz-linear-gradient(center top, #f5c800 5%, #fed800 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5c800', endColorstr='#fed800');
background-color: #f5c800
}
.popup .btn:active {
position: relative;
top: 1px
}
.popup .btn:after {
content: '\00BB'
}
.pop-up-footer-text {
font-family: 'Open Sans';
color: #505050;
font-size: 14px;
text-align: center;
margin: 5px auto;
padding: 0
}
.reveal-modal-bg {
position: fixed;
height: 100%;
width: 100%;
background: #000;
background: rgba(0, 0, 0, .8);
z-index: 100;
display: none;
top: 0;
left: 0
}
.reveal-modal {
visibility: hidden;
top: 100px;
left: 45%;
margin-left: -300px;
width: 714px;
min-height: 200px;
background: #fff no-repeat -200px -80px;
position: absolute;
z-index: 101;
-moz-border-radius: 10px;
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
border-radius: 5px;
-webkit-border-radius: 5px
}
.reveal-modal.small {
width: 200px;
margin-left: -140px
}
.reveal-modal.medium {
width: 400px;
margin-left: -240px
}
.reveal-modal.large {
width: 600px;
margin-left: -340px
}
.reveal-modal.xlarge {
width: 800px;
margin-left: -440px
}
.reveal-modal .close-reveal-modal {
font-size: 22px;
line-height: .5;
position: absolute;
top: -30px;
right: -40px;
color: #aaa;
text-shadow: 0 -1px 1px rbga(0, 0, 0, .6);
font-weight: bold;
cursor: pointer
}
@media only screen and (max-width:800px) {
.reveal-modal {
visibility: hidden;
top: 200px;
left: 45%;
margin-left: -35%;
width: 80%
}
}
</style>
<title>Introducing the TrueNAS X10</title>
<meta content="" name="description">
<meta content="" name="keywords">
<meta content="146039073f72a2:12451c44c346dc" name="leadpages-meta-id">
<meta content="//ixsystems.leadpages.co" name="leadpages-url">
<script>
(function(a, c, d, b, e, f) { a[d] = b;
a[b] || (a[b] = function() { a[b].q = a[b].q || [];
a[b].q.push(arguments) }, d = c.createElement(e), d.async = !0, d.src = f, c = c.getElementsByTagName(e)[0], c.parentNode.insertBefore(d, c)) })(window, document, "LeadPagesCenterObject", "center", "script", "https://js.center.io/center.js");
center('create', 'rMx3rsBoVfadWMfoLN2z5n', 'rMx3rsBoVfadWMfoLN2z5n', { customId: 'lp-5735267667279872' });
</script>
<script>
center('send', 'view', 'leadpage', 5735267667279872)
</script>
</head>
<body>
<header class="header role-element leadstyle-container" style="background-image: url("//lh3.googleusercontent.com/nb_3u8pM7svZwqnWiF6zjIeHFljlncHDhq5RQwlArNfYZ31h7l4mkPSO2TjZYQZvY4Vm8MbaaRdKfBHIc9FWA2c=s0"); background-size: cover; background-position: center top;">
<img src="//lh3.googleusercontent.com/nb_3u8pM7svZwqnWiF6zjIeHFljlncHDhq5RQwlArNfYZ31h7l4mkPSO2TjZYQZvY4Vm8MbaaRdKfBHIc9FWA2c=s0" id="header-bg-image" class="header-bg-img role-element leadstyle-image">
<div class="header_title">
<h1 class="role-element leadstyle-text"><span class="leadstyle-fontsized" style="font-size:28px;"><span id="m_1466959868681406623docs-internal-guid-1fff18b8-053a-8855-d348-258d0028ed51"><span id="m_1466959868681406623docs-internal-guid-15e508f5-053b-7e30-4487-191db66e2da4"><span id="m_1466959868681406623docs-internal-guid-15e508f5-053c-749d-0558-76544dd004e0"><span style="font-family: Roboto; font-weight: 700; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;">Introducing the TrueNAS X10</span></span></span></span></span></h1>
<h2 class="role-element leadstyle-text"><span style="font-family:open sans;"><span class="leadstyle-fontsized" style="font-size:26px;">DURING THIS FREE WEBINAR YOU WILL LEARN:</span><br><span class="leadstyle-fontsized" style="font-size:20px;">•</span></span><span class="leadstyle-fontsized" style="font-size:20px;"> What is the M&E industry?</span><br><span style="font-family:open sans;"><span class="leadstyle-fontsized" style="font-size:20px;">• </span></span><span class="leadstyle-fontsized" style="font-size:20px;">How TrueNAS benefits the M&E customer</span><br><span style="font-family:open sans;"><span class="leadstyle-fontsized" style="font-size:20px;">• </span></span><span class="leadstyle-fontsized" style="font-size:20px;">Common M&E operations</span><br><span style="font-family:open sans;"><span class="leadstyle-fontsized" style="font-size:20px;">• </span></span><span class="leadstyle-fontsized" style="font-size:20px;">Storage issues encountered during M&E operations</span><br><span style="font-family:open sans;"><span class="leadstyle-fontsized" style="font-size:20px;">• </span></span><span class="leadstyle-fontsized" style="font-size:20px;">How TrueNAS resolves these issues </span></h2>
</div>
</header>
<div class="main role-element leadstyle-container">
<div class="main_left role-element leadstyle-container">
<div class="media">
<img src="//lh3.googleusercontent.com/PmXCCYDakVLqrLUEEpeQkY9boPvCAiEBYjVkHgXhQa4TOYQhL3oimNgX5ixI1VYF8Nv1oT6aseawRU32Y2PYrA=s0" class="media__img floatL role-element leadstyle-image" style="max-width: 176px;">
<div class="media__body role-element leadstyle-container">
<h3 class="role-element leadstyle-text">Co-Hosted by TIM NAGLE</h3>
<p class="main_left-title role-element leadstyle-text"><strong>With Brad Meyer</strong></p>
<p class="role-element leadstyle-text"><span id="m_1466959868681406623docs-internal-guid-1fff18b8-053a-8855-d348-258d0028ed51"><span style="font-size:18.666666666666664px;font-family:Roboto;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;vertical-align:baseline;white-space:pre-wrap"><span id="m_1466959868681406623docs-internal-guid-1fff18b8-053a-ee32-74a9-3267b8dd3670"><span id="m_1466959868681406623docs-internal-guid-15e508f5-053d-1f60-4350-6c91e6fb98d8"><span style="font-size:16px;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;vertical-align:baseline">Tim Nagle is the founder of Creative Integrations, a full-service M&E organization that specializes in providing post-production, recording, animation, and broadcast facilities to hundreds of clients worldwide. Brad Meyer is the lead technical marketing engineer for TrueNAS at iXsystems.</span></span>
</span>
</span>
</span> <span id="m_1466959868681406623docs-internal-guid-1fff18b8-053a-8855-d348-258d0028ed51"><span style="font-size:18.666666666666664px;font-family:Roboto;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;vertical-align:baseline;white-space:pre-wrap"><span id="m_1466959868681406623docs-internal-guid-1fff18b8-053a-ee32-74a9-3267b8dd3670"><span id="m_1466959868681406623docs-internal-guid-15e508f5-053d-1f60-4350-6c91e6fb98d8"><img class="ajT" src="https://ssl.gstatic.com/ui/v1/icons/mail/images/cleardot.gif"></span></span>
</span>
</span>
</p>
</div>
</div>
</div>
<div class="main_right border-left role-element leadstyle-container">
<h3 class="role-element leadstyle-text">Register free now!</h3>
<p class="main_right-title role-element leadstyle-text">It’s happening this [[WEEKDAY+next0]] ([[MMMM+next0]] [[DO+next0]]) at...</p>
<div class="main_right-calendar role-element leadstyle-container">
<p class="month role-element leadstyle-text">[[WEEKDAY+next0]]</p>
<p class="day role-element leadstyle-text">[[DD+next0]]</p>
</div>
<div class="main_right-dates">
<ul class="main_right-list role-element leadstyle-text">
<li>[[time1+next0]] Pacific</li>
<li>[[time1+next0+1HOUR]] Mountain</li>
<li>[[time1+next0+2HOUR]] Central</li>
<li>[[time1+next0+3HOUR]] Eastern</li>
</ul>
</div>
</div>
</div>
<div class="section01">
<div class="container role-element leadstyle-container">
<div class="countdown-wrap role-element leadstyle-container">
<h3 class="count-headline role-element leadstyle-text">THIS WEBINAR WILL START IN</h3>
<ul class="countdown role-element leadstyle-countdown" data-timestamp="[[timestamp+next0]]000">
<li>
<div class="flap">
<span id="days" class="days">0</span>
</div>
<p class="timeRefDays role-element leadstyle-text">DAYS</p>
</li>
<li>
<div class="flap">
<span id="hours" class="hours">0</span>
</div>
<p class="timeRefHours role-element leadstyle-text">HOURS</p>
</li>
<li>
<div class="flap">
<span id="minutes" class="minutes">0</span>
</div>
<p class="timeRefMinutes role-element leadstyle-text">MINUTES</p>
</li>
<li>
<div class="flap">
<span id="seconds" class="seconds">0</span>
</div>
<p class="timeRefSeconds role-element leadstyle-text">SECONDS</p>
</li>
</ul>
</div>
<a href="#" data-reveal-id="myModal" class="btn cta01 role-element leadstyle-link">YES! Sign ME UP »</a>
</div>
</div>
<div class="section03">
</div>
<footer class="footer">
<p class="footer_legal role-element leadstyle-text"><a target="_blank" href="https://www.ixsystems.com/privacy-policy/">Privacy Policy</a></p>
</footer>
<link rel="stylesheet" type="text/css" href="http://www.omncdn.com/thankyou/downloads/form.css" />
<div id="myModal" class="popup-container reveal-modal">
<script type="text/javascript" src="http://www.omncdn.com/thankyou/CustomPage/Geoff/mobile.js"></script>
<div id="leadpages-form-wrapper">
<form action="http://www.onlinemeetingnow.com/seminar/?id=[[id]]" method="POST" class="form-horizontal no-image" id="leadpages-form" style="background-color: rgb(255, 255, 255); border-style: solid; border-width: 1pt; border-color: rgb(255, 255, 255)" accept-charset="utf-8">
<a class="close-reveal-modal">
<img src="//lh4.ggpht.com/eTzgQFXzaxNZzAsEGJyKl1WLVocESwwJFPPpfaoi3osmL1VKiZLMsq8jMnvIVhcHrnZYr4sJSK7CYhbOp5ce3Q=s0">
</a>
<div id="leadpages-form-header">
<img id="leadpages-form-header-image" src="https://ixsystems.leadpages.co/static/lp1481749521/img/leadbox_status_bar_gray3.gif" />
<div id="leadpages-form-header-text" style="font-family: Helvetica,Arial,sans-serif; font-size: 10pt; letter-spacing: 0em; display: block">
Almost there! Please answer a few quick questions to save your spot.
</div>
</div>
<div class="leadbox-content-wrapper">
<div id="leadpages-form-title" style="font-family: "Open Sans",Helvetica,Arial,sans-serif; font-size: 18pt; letter-spacing: 0em; display: block">
<div style="text-align: center">
<strong>Enter your email address and click the button
below to save your seat.</strong>
</div>
</div>
<div id="leadpages-fieldset-wrapper">
<fieldset id="leadpages-fieldset">
<input name="inf_form_xid" type="hidden" value="4c75d0385a3b52fa2ef843bee2d7206d" />
<input name="inf_form_name" type="hidden" value="Registrants" />
<input name="infusionsoft_version" type="hidden" value="1.60.0.55" />
<p style="text-align:center;font-family:'Open Sans',Helvetica,Arial,sans-serif;font-weight:normal;font-size:13px;">
<input name="date_option" type="radio" value="option1|[[timestamp+next0]]" checked> [[datetime+next0]] ([[timezone]])
<br>
</p>
<div class="control-group" id="leadpages-container-inf-field-FirstName">
<div class="controls">
<input type="text" name="inf_field_FirstName" value="" id="inf-field-FirstName" placeholder="First Name" data-source="leadpages-first_name" data-role="first_name" required="required" />
</div>
<span class="error-container" id="leadpages-error-inf-field-FirstName"></span>
</div>
<div class="control-group" id="leadpages-container-inf-field-Email">
<div class="controls">
<input type="email" name="inf_field_Email" value="" id="inf-field-Email" placeholder="Email" data-source="leadpages-email" data-role="email" required="required" />
</div>
<span class="error-container" id="leadpages-error-inf-field-Email"></span>
</div>
<div class="control-group">
<div class="controls">
<button id="leadpages-submit-button" type="submit" style="font-family: "Open Sans",Helvetica,Arial,sans-serif; font-size: 14pt; letter-spacing: 0em; background-color: rgb(18, 133, 221); border-style: solid; border-width: 0pt; border-top-width: 0pt; border-right-width: 0pt; border-bottom-width: 0pt; border-left-width: 0pt; border-color: rgb(227, 227, 227); text-shadow: 2px 2px 0px rgb(18, 133, 221)">
<div style="text-align: center">Register Now <span class="raquo">»</span></div>
</button>
</div>
</div>
<div class="leadpages-spacer">- -</div>
</fieldset>
</div>
<div id="leadpages-privacy-policy" style="font-family: "Open Sans",Helvetica,Arial,sans-serif; font-size: 10pt; letter-spacing: ">
<div style="text-align: center">
<i class="icon-lock"></i> We hate SPAM and promise to keep your email address safe.
</div>
</div>
</div>
<div class="leadpages-spacer">- -</div>
<input name="inf_custom_SSWebinarDateTimeText" type="hidden" value="[[datetime]] ([[timezone]])" />
<input name="inf_custom_SSWebinarTitle" type="hidden" value="[[title]]" />
<input name="inf_custom_SSWebinarUrl" type="hidden" value="[[id]]" />
</form>
</div>
<script type="text/javascript" src="//my.leadpages.net/static/lp786/min/css_browser_selector.js"></script>
</div>
<script src="http://omncdn.com/thankyou/html5/forhtml5.js"></script>
<script src="//my.leadpages.net/static/lp1483572580/min/tracking.js"></script>
<!-- Snippet used on StealthSeminar.com to integrate their form with our Marketo -->
<script src="//app-sj20.marketo.com/js/forms2/js/forms2.min.js"></script>
<form id="mktoForm_1171" style="display:none"></form>
<script>
var marketyform;
MktoForms2.loadForm("//app-sj20.marketo.com", "855-MUM-343", 1171, function(form) {
marketyform = form;
marketyform.onSuccess(function() {
jQuery("#leadpages-submit-button").data("finish", "true").click();
return false;
});
});
jQuery.urlParam = function(name) {
var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href);
if (results == null) {
return null;
} else {
return results[1] || 0;
}
}
jQuery(document).ready(function() {
jQuery("#leadpages-submit-button").click(function(e) {
if (jQuery(this).data("finish") !== "true") {
e.stopPropagation();
e.preventDefault();
var fn = jQuery("#inf-field-FirstName").val();
var em = jQuery("#inf-field-Email").val();
var ph = jQuery("#inf-field-Phone1").val();
var st = jQuery("#inf-field-State").val();
var fik = new Date(jQuery('input[name=date_option]:checked').val().split("|")[1] * 1000);
try {
fik = fik.toISOString();
} catch (err) {
fik = "2001-01-01T00:00:00.000Z";
}
marketyform.addHiddenFields({
"Email": em,
"FirstName": fn,
"Phone": ph,
"State": st,
"webinarTime": fik,
"webinarDate": fik.substring(0, 10),
"SSWebinarID": jQuery.urlParam("id")
});
marketyform.submit();
}
});
});
</script>
<script type="text/javascript">
(function() {
var didInit = false;
function initMunchkin() {
if (didInit === false) {
didInit = true;
Munchkin.init('855-MUM-343');
}
}
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//munchkin.marketo.net/munchkin.js';
s.onreadystatechange = function() {
if (this.readyState == 'complete' || this.readyState == 'loaded') {
initMunchkin();
}
};
s.onload = initMunchkin;
document.getElementsByTagName('head')[0].appendChild(s);
})();
</script>
</body>
<!-- This beautiful and lightning fast landing page was proudly created with Leadpages ( see: https://www.leadpages.net ) and hosted on the Leadpages lead generation platform. -->
</html> | Links without protocol | 2017-07-19T11:26:05.000Z |
^((0|1)[0-9])\/([0-3][0-9])\/([0-9][0-9]) | 01/01/20
02/01/20
03/01/20
04/01/20
05/01/20
06/01/20
07/01/20
08/01/20
09/01/20
10/01/20
11/01/20
12/01/20
01/32/20
01/03/20
01/04/20
01/05/20
01/06/20
01/07/20
01/08/20
01/09/20
01/10/20
01/11/20
01/12/20
01/13/20
01/14/20
01/15/20
01/16/20
01/17/20
01/18/20
01/19/20
01/20/20
01/21/20
01/22/20
01/23/20
01/24/20
01/25/20
01/26/20
01/27/20
01/28/20
01/29/20
01/30/20
01/31/20
| dates | 2020-10-17T21:37:04.000Z |
|
(^(?!.*hours)^(?!.*classes).*)lib.* | NOT str_a NOR str_b AND str_c in line | 2017-12-01T16:05:08.000Z |
||
(.)(?=#) | A#test#string#here######## | Answer to 10 | 2020-07-24T21:24:55.000Z |
|
sadasd123 | 123123123123 | Dũng test | 2018-10-10T16:00:08.000Z |
|
(?ms)\b\w*\b(?=\-\>.*) | This is [INFO] 29 Jun- 2018 06:06:49,620 SYSLOG->|datetime:20180629060649618+0000|
my first sentence SYSLOG- dds
This is my [second] sentence.(?<=\[).*?(?=\].*)
(?ms)(?<=\s)\w*(?=\-\>.*) | Find a word before any symbol | 2018-08-05T05:06:29.000Z |
|
^(https?:\/\/)?(www\.)?([A-Za-zа-яА-Я\.]+).* | http://sto.mediaalyans.by/kontakty/
http://www.mediaalyans.by/hbg/5ckogu-sizai-100d50dsa150c406860hz
http://www.mediaalyans.by/blog/biznes-analitika/trends/
http://torcevik.mediaalyans.by/catalog/tapflo/ctv/
http://torcevik.mediaalyans.by/catalog/sihi/lem/
http://www.mediaalyans.by/portfolio-polygraf/
http://torcevik.mediaalyans.by/catalog/sigma/ecp/
http://www.mediaalyans.by/blog/socseti/
http://www.mediaalyans.by/yzd_19kobe-xmas063b180arcx
http://www.mediaalyans.by/blog/usability-ux/psychology-design/
http://www.mediaalyans.by/wch/50kg-maido89c0fy-17zh3a-w
http://www.медиаальянс.by/odq-58auc-fausto3408n01-10gd104cgl-1a
http://www.mediaalyans.by/qrw/e6worldcycle-wh970crud-k-0139sp397306z
http://www.mediaalyans.by/pjh/e2watch-shop65f2ci-at-0047
http://www.mediaalyans.by/gzko_b4rs-online9483cl-neo_plus-es6036-dr17v
http://www.mediaalyans.by/reklama-v-internete/bannernaya-reklama/
http://www.mediaalyans.by/tiee_56airu-shop2ce12sa-cleanbox-cl-l
https://www.mediaalyans.by/3-priema-tipografyky-na-saite/
mediaalyans.by/lgal/24merry-net4ac0bouonj-gp-sp
http://torcevik.mediaalyans.by/catalog/fristam/fl-fl3/
http://www.mediaalyans.by/5-trendov-goda-v-disaine/
| domains | 2018-06-13T12:40:47.000Z |
|
checks the currency in EU | ^\€?(\d{1,3}[.](\d{3}[.])*\d{3}|\d+)([,]\d{1,2})?$ | 2345678914564644,61
€1.000.000,21
1.123.123
€0000000
€1.123.123,12
€1,123,123
| currency EU | 2015-10-12T14:26:28.000Z |
defmodule ([a-zA-Z]+) do\n([\s\S]*)end | defmodule Test do
def dupa(a, b) do
a + b
end
end | defmodule regex | 2016-06-17T11:35:02.000Z |
|
\/wtb_(.*?)[\s](.*)? | /wtb_114 Адамантитовая руда
/wtb_111 Алюминиевая руда
/wtb_122 Веревка
/wtb_102 Ветки
/wtb_106 Древесный уголь
/wtb_108 Железная руда
/wtb_133 Заготовка кузнеца
/wtb_145 Заготовка ремесленника
/wtb_118 Загуститель
/wtb_137 Зерно
/wtb_120 Кожа
/wtb_123 Кокс
/wtb_136 Комбикорм
/wtb_104 Кость животного
/wtb_121 Костяная пудра
/wtb_166 Лезвие кинжала демона
/wtb_165 Лезвие кинжала охотника
/wtb_139 Лезвие трезубца
/wtb_138 Лезвие экскалибура
/wtb_126 Металлический лист
/wtb_130 Металлическое волокно
/wtb_112 Мифриловая руда
/wtb_146 Мифриловый сплав
/wtb_101 Нитки
/wtb_167 Обломок кирки шахтеров
/wtb_169 Обломок костолома
/wtb_168 Обломок молота гномов
/wtb_131 Обработанная кожа
/wtb_124 Очищенная пудра
/wtb_109 Плотная ткань
/wtb_107 Порошок
/wtb_141 Пыль
/wtb_116 Растворитель
/wtb_164 Рецепт браслетов демона
/wtb_163 Рецепт ботинок демона
/wtb_152 Рецепт брони паладина
/wtb_174 Рецепт кинжала демона
/wtb_173 Рецепт кинжала охотника
/wtb_170 Рецепт кирки шахтеров
/wtb_172 Рецепт костолома
/wtb_161 Рецепт куртки демона
/wtb_171 Рецепт молота гномов
/wtb_155 Рецепт перчаток паладина
/wtb_154 Рецепт сапог паладина
/wtb_144 Рецепт трезубца
/wtb_162 Рецепт шапки демона
/wtb_153 Рецепт шлема паладина
/wtb_156 Рецепт щита паладина
/wtb_143 Рецепт экскалибура
/wtb_117 Рубин
/wtb_115 Сапфир
/wtb_135 Сено
/wtb_132 Серебряная заготовка
/wtb_110 Серебряная руда
/wtb_125 Серебряный сплав
/wtb_119 Сталь
/wtb_127 Стальная заготовка
/wtb_129 Стальная нить
/wtb_105 Уголь
/wtb_175 Упаковочный материал
/wtb_113 Филосовский камень
/wtb_159 Фрагмент ботинок демона
/wtb_160 Фрагмент браслетов демона
/wtb_140 Фрагмент брони паладина
/wtb_157 Фрагмент куртки демона
/wtb_150 Фрагмент перчаток паладина
/wtb_149 Фрагмент сапог паладина
/wtb_158 Фрагмент шапки демона
/wtb_148 Фрагмент шлема паладина
/wtb_151 Фрагмент щита паладина
/wtb_103 Шкура животного
/wtb_128 Шнурок
/wtb_179 Хомячки
/wtb_178 Мясо монстров | wtb | 2017-05-17T10:05:14.000Z |
|
Written mostly in Notepad++, bitches! | ^\((\d+)\)\s+([^\(]+)\(([^\)]+)\)\s+vs\.\s+\((\d+)\)\s+([^\(]+)(.*)$ | (8) Cincinnati (22-10) vs. (9) Purdue (21-12) | Parsing Basketball Matchup | 2015-09-24T04:54:16.000Z |
Find and ISO format date. | [0-9]{8} | 20151208 | Date | 2015-12-10T23:27:11.000Z |
This is validation that is used in html5 for validate the url.
http://www.faqs.org/rfcs/rfc3987.html | ^\s*[a-z](?:[-a-z0-9\+\.])*:(?:\/\/(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:])*@)?(?:\[(?:(?:(?:[0-9a-f]{1,4}:){6}(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3})|::(?:[0-9a-f]{1,4}:){5}(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3})|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3})|(?:[0-9a-f]{1,4}:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3})|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3})|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3})|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3})|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|v[0-9a-f]+[-a-z0-9\._~!\$&\'\(\)\*\+,;=:]+)\]|(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(?:\.(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3}|(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=@])*)(?::[0-9]*)?(?:\/(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@]))*)*|\/(?:(?:(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@]))+)(?:\/(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@]))*)*)?|(?:(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@]))+)(?:\/(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@]))*)*|(?!(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@])))(?:\?(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@])|[\uE000-\uF8FF\uF0000-\uFFFFD|\u100000-\u10FFFD\/\?])*)?(?:\#(?:(?:%[0-9a-f][0-9a-f]|[-a-z0-9\._~\xA0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\u10000-\u1FFFD\u20000-\u2FFFD\u30000-\u3FFFD\u40000-\u4FFFD\u50000-\u5FFFD\u60000-\u6FFFD\u70000-\u7FFFD\u80000-\u8FFFD\u90000-\u9FFFD\uA0000-\uAFFFD\uB0000-\uBFFFD\uC0000-\uCFFFD\uD0000-\uDFFFD\uE1000-\uEFFFD!\$&\'\(\)\*\+,;=:@])|[\/\?])*)?\s*$ | url validation HTML5 | 2015-12-04T10:42:57.000Z |
|
^[A-Z]{1,}[a-zA-Z0-9]+ | Class | 2017-12-24T21:35:10.000Z |
||
Regex for url | ([\w+]+\:\/\/)?([\w\d-]+\.)*[\w-]+[\(\)\#\.\:]\w+([\(\)\/\?\=\&\#\.]?[\w-]+)*\/?[\(\-\w\)\?\=\#_]* | https://daringfireball.net/2010/07/improved_regex_for_matching_urls
Some of the advantages of the new pattern, compared to the previous one:
It no longer uses the [:punct:] named character class. I thought this was universally supported in modern regex engines, but apparently it is not.
It does a better job with URLs containing literal parentheses, correctly matching the following URLs that the previous pattern did not:
.http://foo.com/more_(than)_one_(parens)
http://foo.com/blah_(wikipedia)#cite-1.
http://foo.com/blah_(wikipedia)_blah#cite-1.
http://foo.com/unicode_(✪)_in_parens,
http://foo.com/(something)?after=parens.
It now matches mailto: URLs.
It correctly guesses that things like “bit.ly/foo” and “is.gd/foo/” are URLs. Basically: something-dot-something-slash-something.
teste www.google.com teste
https://www.facebook.com.
https://app-1.number123.com.
http://facebook.com.
ftp://facebook.com
http://localhost:3000
localhost:3000/
unitedkingdomurl.co.uk
this.is.a.url.com/its/still=going?wow
shop.facebook.org
app.number123.com
app1.number123.com
app-1.numbEr123.com
app.dashes-dash.com
www.facebook.com
facebook.com
fb.com/hello_123
fb.com/hel-lo
fb.com/hello/goodbye
fb.com/hello/goodbye?okay
fb.com/hello/goodbye?okay=alright
Hello www.google.com World http://yahoo.com
https://www.google.com.tr/admin/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
https://google.com.tr/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
http://google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
ftp://google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
www.google.com.tr/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
www.google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
drive.google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
https://www.example.pl
http://www.example.com
www.example.pl
example.com
http://blog.example.com
http://www.example.com/product
http://www.example.com/products?id=1&page=2
http://www.example.com#up
http://255.255.255.255
255.255.255.255
shop.facebook.org/derf.html
Hello www.google.com World http://yahoo.com
https://www.google.com.tr/admin/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
https://google.com.tr/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
http://google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
ftp://google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
www.google.com.tr/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
www.google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
drive.google.com/test/subPage?qs1=sss1&qs2=sss2&qs3=sss3#Services
Will match the following cases
http://www.foufos.gr
https://www.foufos.gr
http://foufos.gr
http://www.foufos.gr/kino
http://werer.gr
www.foufos.gr
www.mp3.com
www.t.co
http://t.co
http://www.t.co
https://www.t.co
www.aa.com
http://aa.com
http://www.aa.com
https://www.aa.com
Will NOT match the following
www.foufos
www.foufos-.gr
www.-foufos.gr
foufos.gr
http://www.foufos
http://foufos
www.mp3#.com
| Regex for url | 2022-10-01T20:08:59.000Z |
\b((?!(?:.\B)*(?:\B.)*\1)[dog]+)\b | dog
gos
aegihl;iaei
brog
go
god
dooooog | all letters but only letters | 2017-07-29T03:40:42.000Z |
|
(?<=^|[^\w$-])((?:[\w$]+(?:\([^()]*(?:\([^()]*\)[^()]*)*\)|\[[^\]\[]+\])*?\.)+)((?:host|hostname|href|protocol|origin|port))\b | (?<=^|[^\w$-])((?:[\w$]+(?:\([^()]*(?:\([^()]*\)[^()]*)*\)|\[[^\]\[]+\])*?\.)+)((?:host|hostname|href|protocol|origin|port))\b | location | 2019-05-20T12:25:28.000Z |
|
[0-9. ]+([a-z.-]+).*\[(.*)\][\s"A-Z]*(/.*) HTTP/[12].[012]" | 10.101.2.114 www.voyage-prive.com - 94.23.212.183 - - [11/May/2017:06:25:39 +0200] "GET /thematique/ventes/207761?from=feaee02fa292afd71911a4c63d2ed692&utm_medium=email&utm_source=NL&utm_campaign=standard&utm_term=NL2&utm_content=110517NLS20NL2VP_FR&ectrans=1 HTTP/1.1" 200 11898 "-" "(varnish-web)" - - 1.083ms
10.101.2.114 www.voyage-prive.com - 78.200.34.180 - - [11/May/2017:06:25:39 +0200] "GET /fiche-produit/details/207749/b1 HTTP/1.1" 200 32128 "http://www.voyage-prive.com/thematique/ventes" "Mozilla/5.0 (Linux; U; Android 4.4.2; fr-fr; GT-P5210 Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 (varnish-web)" - - 0.085ms
10.101.2.114 www.voyage-prive.com - 80.215.46.226 - - [11/May/2017:06:25:39 +0200] "GET /fiche-produit/details/208003 HTTP/1.1" 200 44186 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Mobile/14A456 (varnish-web)" - - 0.051ms
10.101.2.114 www.voyage-prive.com - 89.80.18.134 - - [11/May/2017:06:25:39 +0200] "GET /search/doAjaxSearch?sid=208088&decode=true&version=2&with_dispos=1&culture=fr_FR&oid=3602628&with_catalog=true&papaya2=0 HTTP/1.1" 200 18690 "http://www.voyage-prive.com/fiche-produit/details/208088/b1" "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1 (varnish-web)" - - 0.014ms
10.101.2.114 www.voyage-prive.com - 89.80.18.134 - - [11/May/2017:06:25:40 +0200] "GET /search/doAjaxSearch?sid=208088&decode=true&version=2&with_dispos=1&culture=fr_FR&oid=3602629&with_catalog=true&papaya2=0 HTTP/1.1" 200 3759 "http://www.voyage-prive.com/fiche-produit/details/208088/b1" "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1 (varnish-web)" - - 0.008ms
10.101.2.114 www.voyage-prive.com - 81.57.89.166 - - [11/May/2017:06:25:40 +0200] "GET /fiche-produit/details/207756 HTTP/1.1" 200 42503 "-" "Mozilla/5.0 (iPad; CPU OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Mobile/14E304 (varnish-web)" - - 0.045ms
10.101.2.114 www.voyage-prive.com - 212.83.158.193 - - [11/May/2017:06:25:40 +0200] "GET /login/index HTTP/1.1" 200 9555 "-" "Python-urllib/2.6 (varnish-web)" - - 0.054ms
10.101.2.114 www.voyage-prive.com - 10.110.2.254 - - [11/May/2017:06:25:40 +0200] "GET /api/member/update?id_membre=5295731&culture=fr_FR HTTP/1.1" 200 1387 "-" "Phalcon HTTP/0.0.2 (Curl) (varnish-web)" - - 0.023ms
10.101.2.114 www.voyage-prive.it - 212.83.158.193 - - [11/May/2017:06:25:40 +0200] "GET /login/index HTTP/1.1" 200 9042 "-" "Python-urllib/2.6 (varnish-web)" - - 0.052ms
10.101.2.114 www.voyage-prive.com - 78.118.109.58 - - [11/May/2017:06:25:41 +0200] "GET /search/doAjaxMerchSdv?d[]=eu.fr.fr11.par&is_admin=0&sales_type=filtered&list=2&version=3&groupBy=isOnline&count=250&page=1&culture=fr_FR&onlySale=1 HTTP/1.1" 200 15847 "http://www.voyage-prive.com/thematique/ventes" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14 (varnish-web)" - - 0.011ms | regex log syslog | 2017-05-17T12:45:52.000Z |
|
Pros:
- Attribute-aware (but not complete parse)
- Content-aware (text only)
Cons:
- Might poor performance (unnecessary matches if you work on a ssr thing)
- Not complete XML parse | <draw(?:\s*|)(?:\s([^<>]*)|)(?:\/>|>([^<>]*)<\/draw>) | <draw/>
<draw />
<draw class="idiot"/>
<draw disabled>im a funny not</draw>
<draw disabled><im a funny not></draw> | XML/HTML Tag selector | 2023-11-20T09:23:06.000Z |
^((25[0-5]|2[0-4]\d|[01]?\d{1,2})\.){3}(25[0-5]|2[0-4]\d|[01]?\d{1,2})$ | 22.231.113.64
22.231.113.164
222.231.113.64
22.231.113.64
22.231.113.164
255.231.111.64
253.231.111.64
22.21.113.61
22.21.113.162
255.21.111.63
253.21.111.69
22.211.113.64
22.212.113.164
255.213.111.64
253.214.111.64
22.211.113.364
22.212.113.3164
255.213.111.464
253.214.111.564
not an ip address
not an ipv4 Address
Not an IPv5 Address | ipv4 per line | 2018-04-14T18:34:21.000Z |
|
(?s)(?:threadId:)(?<threadId4>.*?)(?:\s*\|)(?:.*userId:)(?<userId4>.*?)(?:\s*\|)(?:.*applicationName:)(?<appName>.*?)(?:\s*\|)(?:.*payload:)(?<payload>.*?)(?:\s*\|) | [INFO] 28 Jun 2018 14:02:29,480 SYSLOG->|datetime:20180628140229479+0000|hostname:marketingprofile-deployment-877c7f857-cv9d6/10.44.0.15(10.44.0.15)|threadId:47-http-nio-11551-exec-1(main)|userId:null|correlationId:c7943b58-a584-4cba-ad44-45cf1af3a400|applicationName:RETRIEVEMARKETINGPROFILE-V1|direction:ENTERING|operationName:RetrievalService|className:LogServletFilter|methodName:logRequest|clusterName:TXH|webServiceType:REST|payload:<?xml version="1.0" encoding="UTF-8" standalone="no"?><!--<INPUTINFO> <BBCAN>8881008923</BBCAN> </INPUTINFO>--><INPUTINFO> <APPLICATIONID>NCOG</APPLICATIONID> <CLINETREQUESTID>test</CLINETREQUESTID> <VISION> <CUSTOMERID>151862438</CUSTOMERID> <ACCOUNTID>0001</ACCOUNTID> </VISION> <!--<VOICECAN>0178430862672</VOICECAN>--> <!-- <BBCAN>060002792607</BBCAN> --> <!--<BTN>2016221232</BTN> --> <!-- <ADDRESS> <ADDRESSID>030862772</ADDRESSID> <STATE>MD</STATE> </ADDRESS> --> <!--<SSPBAN>0178430862772</SSPBAN>--> <!--<PCAN>E100007652</PCAN> --> </INPUTINFO>|requestVerb:POST|httpHeaders:content-length={534};ssp-correlationid={c7943b58-a584-4cba-ad44-45cf1af3a400};host={10.44.0.15:11551};content-type={text/xml};connection={Keep-Alive};accept-encoding={gzip};user-agent={Apache-HttpClient/4.1.1 (java 1.5)};|requestUrl:http://10.44.0.15:11551/retrieveMarketingProfile/RetrievalService?null | New splunk field ex | 2018-07-30T08:55:00.000Z |
|
# **Using a _Non-capturing Group_: `regex` + `python`**
This [question][#so-question] was asked on stackoverflow and it appeared that the best way to match the expression will be to use a non-capturing group.
[#so-question]: https://stackoverflow.com/questions/61882072/python-regex-findall-function-only-returning-matchings-on-groups-instead-of-full/61882155#61882155
Suppose the text is ` 'bcacaca'` and you want to match any pattern where you have an optional `b` followed by zero or more `.a` pattern.
Here is an example. For more details, see [this on regex101](https://regex101.com/r/DafnP1/1).
```python
import re
## Define text and pattern
text = 'bcacaca dcaca dbcaca'
pattern = 'b?(?:.a)*'
## Evaluate regex
result = re.findall(pattern, text)
# output
# ['bcacaca', '', '', 'caca', '', '', 'bcaca', '']
## Drop empty strings from result
result = list(filter(None, result))
# output
# ['bcacaca', 'caca', 'bcaca']
``` | b?(?:.a)* | bcacaca dcaca dbcaca | Using a Non-Capturing Group (regex + python) | 2020-05-19T03:30:43.000Z |
A basic validator for BR phone numbers | ^(((\+?[0-9]{2})?\(?[0-9]{2}\)?)?([0-9]?[0-9]{4}\-?[0-9]{4}))$ | +55(91)3348-0276
559133480276
(91)3348-0276
9133480276
3348-0276
33480276
+55(91)98444-6776
5591984446776
(91)98444-6776
91984446776
98444-6776
984446776 | Brazillian Telephone Number validator | 2015-10-06T13:48:06.000Z |
Find a date formated M/d/yyyy. | [ 1][0-9]\/[0-3]?[0-9]\/[0-9][0-9][0-9][0-9] | DO NOT CONTACT HER REST OF THE SUMMER!!!! 7/0 5/2015 3:07 PM: Ended Activity
12/5/2016 7/5/2015
1?[0-9]\/[0-3]?[0-9]\/[0-9][0-9][0-9][0-9] | Date Regex | 2016-02-03T20:56:30.000Z |
^[a-zA-Z0-9]{3,4}$ | print(username) | class code regex | 2015-12-11T14:30:38.000Z |
|
(\d\d?) ([A-Z][a-z][a-z]) (\d{4}); | (\d\d?) ([A-Z][a-z][a-z]) (\d{4}); | 2015-11-09T19:44:53.000Z |
||
([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2}) | 60060160d63036007ff161103ed5e311
60060160d6303600c659771b3ed5e311
60060160d630360089338aa421b1e311
60060160d6303600990f61b521b1e311
60060160d6303600367d84115d58e411
60060160d430360087eacc151270e411
60060160d63036008cf99f0240b1e311 | LUN UID | 2016-01-29T06:12:51.000Z |
|
[^a-zA-Z0-9\$\_\"]|^[0-9]+[a-zA-Z0-9\$\_\"]|^[0-9]+$|\s | 5inch
inc5fh | Validate param name | 2017-06-04T04:28:43.000Z |
|
^##api(?<apicont>.+?)##.+?Функция\s+(?<funcname>.+?)\((?<funcparam>.+?)\)\s+{ | ##api
# @param лс - обязательный параметр. row_id ЛСа/дома/квартира
# @param наДату - обязательный параметр. Дата, на которую должена действовать УК
# @param результат - не обязательный параметр. Может быть только строкой (ЛСID, УКДатНач, УКДатКнц, ОрганизацияID, Название, Наименование, ДоговорID, Номер, ККС, ДоговорДатНач, ДоговорДатКнц, Объект_Организация, Объект_Договор), по умолчанию - пустая строка, определяет что вернуть в качестве результата, массив, конкретное поле или объект
# @param дом - не обязательный параметр. row_id дома, для проверки кеша
# @description возвращает массив с собранными данными об УК
##
Функция ПолучитьУКпоЛС(лс, наДату, ...) {
##api
# @param лс - обязательный параметр. row_id ЛСа/дома/квартира
# @param наДату - обязательный параметр. Дата, на которую должена действовать УК
# @param результат - не обязательный параметр. Может быть только строкой (ЛСID, УКДатНач, УКДатКнц, ОрганизацияID, Название, Наименование, ДоговорID, Номер, ККС, ДоговорДатНач, ДоговорДатКнц, Объект_Организация, Объект_Договор), по умолчанию - пустая строка, определяет что вернуть в качестве результата, массив, конкретное поле или объект
# @param дом - не обязательный параметр. row_id дома, для проверки кеша
# @description возвращает массив с собранными данными об УК
##
Функция ПолучитьУКпоЛС(лс, наДату, ...) { | 6 | 2015-08-31T10:58:24.000Z |
|
https://docs.racket-lang.org/guide/Looking_Ahead_and_Behind.html | grey (?=[a-z]+) | i left my grey 123 at the grey hund
| Simple lookahead | 2018-04-07T14:02:33.000Z |
^\d{8,9}$ | 12345678
123456789
123
1234567890
1234567* | Applicant ID Check | 2019-05-08T19:33:24.000Z |
|
ผลิตภัณฑ์ส่งเสริมการขาย | (?<first_sentence>.*[.?!])\s+(?<second_sentence>.*)\n | assumes word senses. Within
he arrive." After she had
| OhArthit | 2021-03-18T09:17:14.000Z |
^([cC]\/|[cC]alle|[aA]v\/|[aA]venida|[pP]laza\/|[pP]laza)\s([A-z ]{0,})\,\s\d+$ | calle prueba, 2
calle de la prueba, 5
Avenida de la prueba, 5
Plaza de la prueba, 5
Calle Higuereta, 4, 7º B
Calle Escritor Conde Zamora s/n
Avenida Ciudad de Aranjuez 18
Avenida Pintor Sorolla 125 4ºG
Polígono Industrial Aranguren 6
Calle Gremi Passamaners 24 2º
Avenida Manuel Rodriguez Ayuso, 170
Calle Illa de Buda 55
C/ Walia, 21
C/Alfonso Pesquera, 6 | general direction | 2019-02-07T09:04:02.000Z |
|
## I made the description in a CSS file which can be viewed [here](https://drive.google.com/uc?export=view&id=1Dal1yMicNV114JY2u-Y7eC34nlO1y1P_)
Dont worry its not a virus or anything\, just inspect the source if you are suspicious \:\) | \G({+)([[:alnum:]]+)(}+)(Biography)+\n+|\v | {Witchking}Biography
{Witchking_desc}The Witch-King is the Lord of all Nazgûl, Sauron's most terrible servants. Once a great king of Men, his will is controlled through one of the nine Rings Of Power.\n
{Witchking_effects_desc}Command +15\nLoyalty +10\nAuthority +15\nGeneral's Hit Points +10\nTroop Morale +20\nAttack +100 \nDefence +100
¬---------------------
{Aragorn}Biography
{Aragorn_desc}After his father Arathorn was killed by orcs, Aragorn was fostered in Rivendell by Elrond. Aragorn thereafter assumed his proper role as the sixteenth Chieftain of the Dúnedain, the Rangers of the North, and went into the wild where live the remnants of his people. Though their kingdom was destroyed through civil and regional wars centuries before, the northern Dúnedain remain loyal to Aragorn and committed to the fight against the shadow.\n
{Aragorn_effects_desc}Command +3\nLoyalty +6\nAuthority +3\nTroop Morale +2\nGeneral's Hit Points +6\nPersonal Security +2
¬---------------------
{Aragorn2}Biography
{Aragorn2_desc}After his father Arathorn was killed by orcs, Aragorn was fostered in Rivendell by Elrond. Aragorn thereafter assumed his proper role as the sixteenth Chieftain of the Dúnedain, the Rangers of the North, and went into the wild, where live the remnants of his people, whose kingdom had been destroyed through civil and regional wars centuries before.\n
{Aragorn2_effects_desc}General's Hit Points +10\nCommand +12\nLoyalty +6\nAuthority +31\nAttack +40\nTroop Morale +20\nDefence +40
¬---------------------
{Elessar}Biography
{Elessar_desc}After his father Arathorn was killed by orcs, Aragorn was fostered in Rivendell by Elrond. Aragorn thereafter assumed his proper role as the sixteenth Chieftain of the Dúnedain, the Rangers of the North, and went into the wild where live the remnants of his people. Though their kingdom was destroyed through civil and regional wars centuries before, the northern Dúnedain remain loyal to Aragorn and committed to the fight against the shadow.\n
{Elessar_effects_desc}Command +4\nLoyalty +5\nAuthority +3\nTroop Morale +2\nGeneral's Hit Points +6\nPersonal Security +2
¬---------------------
{Halbarad}Biography
{Halbarad_desc}Halbarad is a Ranger of the North, and is second-in-command of the Dúnedain behind Aragorn. As such, he acts in the capacity of the "Steward of the North" and as leader of the Grey Company. Halbarad is among the Rangers who guard the Shire. He has said of the Hobbits "A little people but of Great worth are the Shire-folk. Little do they know of our long labour for the safe-keeping of their borders. As a kinsman of Aragorn, Halbarad is entrusted with the King's Standard on the battlefield.\n
{Halbarad_effects_desc}Command +2\nGeneral's Hit Points +3\nRespect +3\nLoyalty +3\nPersonal Security +2\nTroop Morale +2
{Halbarad_epithet_desc}of the North
¬---------------------
{Legolas}Biography
{Legolas_desc}Legolas is the son of Thranduil, King of the Woodland Realm of Northern Mirkwood. Although he lives among the Silvan Elves, Legolas is not strictly Silvan himself. His father Thranduil originally came from Lindon; he and his son are actually Sindar, or "Grey Elves". A small minority of Sindar rules the predominantly Silvan Woodland Realm.\n
{Legolas_effects_desc}Command +10\nGeneral's Hit Points +6\nPersonal Security +2\nLine of Sight +3\nMovement Points +4\nAmbush +3\nLoyalty +6
¬---------------------
{Gimli}Biography
{Gimli_desc}Gimli is the son of Glóin, one of the former companions of the hobbit Bilbo Baggins. He is a remote descendant of Durin the Deathless, chief of the Seven Fathers of the Dwarves and ancestor of the Dwarven people to which Gimli belongs, the Longbeards. Gimli is of the royal line, but not close to the succession; he is the third cousin once removed of Dáin II Ironfoot, king of Durin's Folk, and the first cousin once removed of Balin, who was Lord of Moria for a short time.\n
{Gimli_effects_desc}Command +2\nLoyalty +5\nGeneral's Hit Points +6\nPersonal Security +2\nSiege Attack +2\nAuthority +1
¬---------------------
{Gandalf}Biography
{Gandalf_desc}Gandalf the Grey was the last of the Istari to arrive in Middle-earth, landing in Mithlond. He is the oldest and least in stature of them, but on their first meeting in the Havens, Círdan the Shipwright felt that he had the highest inner greatness and gave him Narya, the Ring of Fire. Gandalf hides the ring well, and it is not widely known that he, and not Círdan, is the holder of the third of the Elven-rings.\n
{Gandalf_effects_desc}Command +3\nGeneral's Hit Points +8\nPersonal Security +2\nRespect +4\nLoyalty +5\nAuthority +2\nAttack +2\nDefence +2
¬---------------------
{Thengel}Biography
{Thengel_desc}Thengel the Thrice-renowned is the sixteenth King of Rohan. He is the only son of Fengel, and became king after the death of his father in T.A. 2953. Thengel left Rohan in his youth and went to live with his mother's family in Gondor. There he learned Sindarin which is is the daily tongue in his house, together with Westron, the common speech.\n
{Thengel_effects_desc}Command +2\nGeneral's Hit Points +4\nPersonal Security +1\nRespect +3\nLoyalty +5\nAuthority +2
¬---------------------
{Theoden}Biography
{Theoden_desc}Théoden is the oldest son of Thengel, a member of the House of Éorl and heir to the throne of Rohan. He speaks Sindarin and Westron rather than Rohirric, and in his youth spent time in Gondor.\n
{Theoden_effects_desc}Command +3\nGeneral's Hit Points +5\nPersonal Security +1\nRespect +2\nLoyalty +5\nAuthority +2
¬---------------------
{Eomer}Biography
{Eomer_desc}Eomer, son of Eomund, loyal above all to the people of Rohan.\n
{Eomer_effects_desc}General's Hit Points +5\nCommand +2\nRespect +2\nLoyalty +5\nAuthority +1
¬---------------------
{Lurtz}Biography
{Lurtz_desc}Lurtz is the first commander of Isengard's armies. He is highly trusted by Saruman, and thus inspires his troops to do Saruman's bidding; whatever that might be. Let no man, elf, dwarf, or even another orc stand in the way of Saruman's will whilst Lurtz is their commander.\n
{Lurtz_effects_desc}Command +2\nGeneral's Hit Points +5\nPersonal Security +1\nTroop Morale +2\nMovement Points +3\nLoyalty +3\nAuthority +2
¬---------------------
{Ugluk}Biography
{Ugluk_desc}Uglúk is the first commander of Isengard's armies. He is highly trusted by Saruman and Sauron, and ruthlessly enforces Saruman's orders - beheading another orc to prevent Saruman's orders being disobeyed.\n
{Ugluk_effects_desc}Command +1\nGeneral's Hit Points +4\nPersonal Security +1\nTroop Morale +1\nMovement Points +2\nLoyalty +2\nAuthority +1
¬---------------------
{Saruman}Biography
{Saruman_desc}Saruman the White was once the Chief of the Order of Wizards, whose mission was to help the free peoples of Middle-earth in their struggle against Sauron without seeking domination or power for themselves. He is wise and powerful, but he became resentful and jealous of Gandalf and became corrupted by desire for the One Ring.
{Saruman_effects_desc}Command +3\nGeneral's Hit Points +8\nPersonal Security +2\nRespect +3\nAuthority +2\nAttack +2\nDefence +2
¬---------------------
{grima_diplomat}Biography
{grima_diplomat_desc}Nothing is known about Grima's early life. Grima is the son of Galmod and he has a pale face and dark, heavy-lidded eyes. He is a henchman of Saruman and serves as an archetypal sycophant, flatterer, liar, and manipulator.\n
{grima_diplomat_effects_desc}Influence +1\nMovement Points -25% (reduces the distance this agent can march)
{grima_diplomat_epithet_desc}Wormtongue
¬---------------------
{Ecthelion}Biography
{Ecthelion_desc}Ecthelion II is the twenty-fifth ruling Steward of Gondor. He succeeded his father Turgon at his death in T.A. 2953. In the beginning of his rule Orodruin, also known as Mount Doom, burst into flame and the few remaining people of Ithilien fled over the Anduin.\n
{Ecthelion_effects_desc}Command +2\nGeneral's Hit Points +4\nPersonal Security +1\nRespect +3\nAuthority +2\nLoyalty +5
¬---------------------
{Denethor}Biography
{Denethor_desc}Denethor II is the twenty-sixth ruling Steward of Gondor. He succeeded his father Ecthelion II at his death in T.A. 2984. Denethor appears noble and powerful, and rivals even the lordliness of Gandalf. He is proud, tall, wise, far-sighted, and valiant; 'more kingly' than many of his predecessors. He proved a masterful lord and a great ruler, seeing to all things large and small under his command.\n
{Denethor_effects_desc}Command +2\nGeneral's Hit Points +3\nPersonal Security +1\nRespect +3\nAuthority +2\nLoyalty +5
¬---------------------
{Elrond}Biography
{Elrond_desc}Elrond is Lord of Rivendell, one of the mighty rulers of old that remained in Middle-earth. His name means "Vault of Stars", "Star-dome" or "Elf of the Cave". He is the son of Eärendil and Elwing, and a great-grandson of Lúthien, born in Beleriand in the First Age, making him well over 6,000 years old. Elrond's twin brother was Elros Tar-Minyatur, the first High King of Númenor.\n
{Elrond_effects_desc}Command +2\nGeneral's Hit Points +8\nPersonal Security +2\nRespect +3\nAuthority +2\nLoyalty +5
¬---------------------
{Elladan}Biography
{Elladan_desc}Elladan and his twin brother Elrohir are the children of Celebrían and Elrond. Dark-haired and grey-eyed, only those that know them well can tell them apart. The first of the twins was named Elladan, ("Elf-Man") as a token of his ancestry; he was descended not only from the royal houses of the Noldor and the Sindar, but also from the Houses of Hador and Bëor of the Edain.\n
{Elladan_effects_desc}Command +1\nGeneral's Hit Points +5\nPersonal Security +1\nRespect +2\nAuthority +1\nLoyalty +3
¬---------------------
{Elrohir}Biography
{Elrohir_desc}Elrohir and his twin brother Elladan are the children of Celebrían and Elrond. Dark-haired and grey-eyed, only those that know them well can tell them apart. He was descended not only from the royal houses of the Noldor and the Sindar, but also from the Houses of Hador and Bëor of the Edain.\n
{Elrohir_effects_desc}General's Hit Points +5\nPersonal Security +1\nRespect +2\nAuthority +1\nLoyalty +2
¬---------------------
{Cirdan}Biography
{Cirdan_desc}Círdan is a Telerin Elf, a great mariner and shipwright, and lord of Mithlond. He was the bearer of the Great Ring Narya, which he in turn gave to Gandalf. He has a beard, which is rare for Elves, and his 'true' name, according to the tradition among the Sindar of Doriath, is Nōwē in the form it had in the original tongue of the Elves.\nDuring the War of Wrath, the land of Beleriand sank beneath the ocean. However, because of Círdan's mariners, many survived and sailed to the new shores of Middle-earth, where they would come to form the havens of Lindon and Mithlond.\n
{Cirdan_effects_desc}General's Hit Points +6\nRespect +2\nAuthority +1\nLoyalty +2
¬---------------------
{Glorfindel}Biography
{Glorfindel_desc}Glorfindel is one of the mightiest Elves of Middle-earth in the Third Age. He is distinctive because of his return to Middle-earth after death as an emissary of the Valar, on a similar mission to the Istari who were to come several thousand years later. His parentage is unknown.\n
{Glorfindel_effects_desc}Command +2\nGeneral's Hit Points +8\nPersonal Security +2, Respect +3\nAuthority +2\nLoyalty +4
¬---------------------
{Thranduil}Biography
{Thranduil_desc}Thranduil the Elvenking is a Sindarin Elf and King of the Silvan Elves in the northern part of Mirkwood. He is the son of Oropher and father of Legolas Greenleaf. Thranduil is one of many Sindar who travelled eastward from Lindon at the beginning of the Second Age. He eventually ended up in Greenwood the Great, where Silvan Elves of Nandorin descent lived. His father Oropher was taken by them as lord and founded the Woodland Realm.\n
{Thranduil_effects_desc}Command +2\nGeneral's Hit Points +8\nPersonal Security +1\nRespect +3\nAuthority +2\nLoyalty +5
¬---------------------
{Celeborn}Biography
{Celeborn_desc}Celeborn is the Elven husband of Galadriel, Lord of the Galadhrim, and, along with Galadriel, co-ruler of Lothlórien. He is the father of Celebrían, the wife of Elrond, and thus the grandfather of Arwen Evenstar and her older brothers Elladan and Elrohir.\n
{Celeborn_effects_desc}Command +2\nGeneral's Hit Points +6\nPersonal Security +1\nRespect +3\nAuthority +2\nLoyalty +3
¬---------------------
{Haldir}Biography
{Haldir_desc}Haldir is a Silvan Elf of Lothlórien and a marchwarden who guards the forest's northern borders. Haldir and his companions live on platforms in the trees and he is one of the few Elves of Lórien who can speak Westron.\n
{Haldir_effects_desc}Command +2\nGeneral's Hit Points +6\nPersonal Security +1\nRespect +2\nAuthority +1\nLoyalty +4
¬---------------------
{Dain}Biography
{Dain_desc}Dáin II or Dáin Ironfoot is the son of Náin and grandson of Grór, the youngest son of King Dáin I, and is King under the Mountain and King of Durin's folk. Dáin fought in the War of the Dwarves and Orcs, but his only recorded deeds are at the Battle of Azanulbizar.\n
{Dain_effects_desc}Command +2\nGeneral's Hit Points +5\nPersonal Security +1\nRespect +3\nAuthority +2\nLoyalty +5
¬---------------------
{Bard}Biography
{Bard_desc}Bard of Esgaroth is a skilled archer and the son of Girion, the last king of old Dale. Bard was able to slay the Dragon Smaug with a single arrow after a tip from the old thrush revealed an unarmoured spot on the Dragon's underside. Because of his miraculous shot he was given the epithet "the Bowman". After the rebuilding of Esgaroth, Bard became the first King of the restored Kingdom of Dale.\n
{Bard_effects_desc}Command +1\nGeneral's Hit Points +4\nPersonal Security +1\nRespect +3\nAuthority +2\nLoyalty +5
¬---------------------
{Boromir}Biography
{Boromir_desc}Boromir is the brother of Faramir and the eldest son of Denethor II, the ruling Steward of Gondor. He is honourable and noble; he believes passionately in the greatness of his kingdom and would defend its people to the very last. Boromir's great stamina and physical strength, together with a forceful and commanding personality, make him a widely-admired commander in Gondor's army. He was made Captain of the White Tower and quickly became Captain-General; he also bears the title High Warden of the White Tower.\n
{Boromir_effects_desc}Command +2\nGeneral's Hit Points +5\nPersonal Security +1\nRespect +3\nAuthority +2\nLoyalty +5
¬---------------------
{Faramir}Biography
{Faramir_desc}Faramir is the younger brother of Boromir and second son of Denethor II, the Steward of Gondor. He is gentle in bearing, a lover of lore and of music, and thus his courage is judged as less than his brother's despite his great nobility and capable leadership. He has great skill-at-arms and is one of the best human archers in Middle-earth; he is a fitting Captain-general of the Rangers of Ithilien.\n
{Faramir_effects_desc}Command +2\nGeneral's Hit Points +4\nPersonal Security +2\nRespect +4\nAuthority +1\nLoyalty +4
¬---------------------
{Ents}Biography
{Ents_desc}Treebeard or (Sindarin) Fangorn is the oldest of the Ents, a tree-like being who is a sort of shepherd of trees. Very tall and stiff-limbed, with bark-like skin and leafy hair he lives in Fangorn forest, which is named after him. Like most Ents, Treebeard takes a long time to make up his mind and he is probably the oldest being in all of Middle-earth.\n
{Ents_effects_desc}Command +2\nGeneral's Hit Points +2\nPersonal Security +3\nMovement Points -15%\nDefence +2\nAmbush +3\nRespect +5\nAuthority +4\nLoyalty +5 | Text out of all sort of brackets (or in) SUPPORTS: { } [ ] ( ) < > | 2021-04-16T13:15:44.000Z |
Various RegEx expressions that work with Semantic Versioning, | ^(\d+)\.(\d+)\.(\d+)-?([a-zA-Z-\d\.]*)\+?([a-zA-Z-\d\.]*)$ | See formulas at the bottom of this page.
name and valid Semantic Version:
test_1.2.3
test_1.0.0-alpha-a.b-c-somethinglong+build.1-aef.1-its-okay
Valid Semantic Versions
0.0.4
1.2.3
10.20.30
1.1.2-prerelease+meta
1.1.2+meta
1.1.2+meta-valid
1.0.0-alpha
1.0.0-beta
1.0.0-alpha.beta
1.0.0-alpha.beta.1
1.0.0-alpha.1
1.0.0-alpha0.valid
1.0.0-alpha.0valid
1.0.0-alpha-a.b-c-somethinglong+build.1-aef.1-its-okay
1.0.0-rc.1+build.1
2.0.0-rc.1+build.123
1.2.3-beta
10.2.3-DEV-SNAPSHOT
1.2.3-SNAPSHOT-123
1.0.0
2.0.0
1.1.7
2.0.0+build.1848
2.0.1-alpha.1227
1.0.0-alpha+beta
1.2.3----RC-SNAPSHOT.12.9.1--.12+788
1.2.3----R-S.12.9.1--.12+meta
1.2.3----RC-SNAPSHOT.12.9.1--.12
1.0.0+0.build.1-rc.10000aaa-kk-0.1
99999999999999999999999.999999999999999999.99999999999999999
1.0.0-0A.is.legal
Invalid Semantic Versions
1
1.2
1.2.3-0123
1.2.3-0123.0123
1.1.2+.123
+invalid
-invalid
-invalid+invalid
-invalid.01
alpha
alpha.beta
alpha.beta.1
alpha.1
alpha+beta
alpha_beta
alpha.
alpha..
beta
1.0.0-alpha_beta
-alpha.
1.0.0-alpha..
1.0.0-alpha..1
1.0.0-alpha...1
1.0.0-alpha....1
1.0.0-alpha.....1
1.0.0-alpha......1
1.0.0-alpha.......1
01.1.1
1.01.1
1.1.01
1.2
1.2.3.DEV
1.2-SNAPSHOT
1.2.31.2.3----RC-SNAPSHOT.12.09.1--..12+788
1.2-RC-SNAPSHOT
-1.0.3-gamma+b7718
+justmeta
9.8.7+meta+meta
9.8.7-whatever+meta+meta
99999999999999999999999.999999999999999999.99999999999999999----RC-SNAPSHOT.12.09.1--------------------------------..12
==============================================
Official Semantic VErsion regex:
^(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?P<buildmetadata>[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
==============================================
This has almost no false positives, and work in xsd scheme:
^(\d+)\.(\d+)\.(\d+)-?([a-zA-Z-\d\.]*)\+?([a-zA-Z-\d\.]*)$ | Semantec Versioning | 2021-05-18T06:39:04.000Z |
\s*<Title\svodBackOfficeId=\"([^\s]*)"> | <?xml version="1.0" encoding="utf-8"?>
<Titles xmlns="urn:eventis:prodis:onlineapi:2.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Title vodBackOfficeId="00181253-684f-4911-92ab-91859bc4402a">
<IngestId>1001_00000000071p1</IngestId>
<Name>Superbabies: Baby Geniuses 2 71</Name>
<Description>A group of smart-talking toddlers find themselves at the center of a media moguls experiment to crack the code to baby talk. The toddlers must race against time for the sake of babies everywhere.</Description>
<ContentProvider>Arrivo</ContentProvider>
<CurrentTitleType>Feature</CurrentTitleType>
<IsApp>false</IsApp>
<Assets>
<Asset vodBackOfficeId="dc640b52-3067-4ba2-8506-474996126089" encodingProfileCode="Cable"/>
<Asset vodBackOfficeId="0a36f3c4-1484-4631-be26-f01a955966ae" encodingProfileCode="Orion"/>
<Asset vodBackOfficeId="00a0cca8-9d09-4048-bf17-e51b63bb1491" encodingProfileCode="Widevine"/>
</Assets>
<MetadataIngestId>1001_00000000071p1</MetadataIngestId>
</Title>
<Title vodBackOfficeId="c4289c39-b92f-49c5-9a45-bc6eaf7b8393">
<IngestId>9110_00000000175p1</IngestId>
<Name>SmartRec Test VOD 1</Name>
<Description>The Tramp cares for an abandoned child, but events put that relationship in jeopardy. Dennis</Description>
<ContentProvider>Arrivo</ContentProvider>
<CurrentTitleType>Feature</CurrentTitleType>
<IsApp>false</IsApp>
<Assets>
<Asset vodBackOfficeId="39779bf2-800f-4821-8d43-b42dffe155f9" encodingProfileCode="Cable"/>
<Asset vodBackOfficeId="9c90a157-875e-4737-936e-3d34b60a6b61" encodingProfileCode="Orion"/>
<Asset vodBackOfficeId="13fb314b-332c-4633-9334-d294f72e370b" encodingProfileCode="Widevine"/>
</Assets>
<MetadataIngestId>9110_00000000175p1</MetadataIngestId>
</Title>
<Title vodBackOfficeId="4a8bc282-8bb8-4dce-b2d1-e2129c092d80">
<IngestId>seachange.com_TEST1386088695671341</IngestId>
<Name>Wanted</Name>
<Description>Doormat Wesley Gibson discovers that his recently murdered father -- who Wesley never knew -- belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.</Description>
<ContentProvider>SEAC</ContentProvider>
<CurrentTitleType>Feature</CurrentTitleType>
<IsApp>false</IsApp>
<Assets>
<Asset vodBackOfficeId="b0c8bdd7-00e3-4ce5-889b-73e708d75f03" encodingProfileCode="Cable"/>
</Assets>
<MetadataIngestId>seachange.com_TEST1386088695671341</MetadataIngestId>
</Title> | Filter Titles from 2b | 2015-11-11T12:21:12.000Z |
|
Find the second word in a string.
EX string: "First Second Third"
The output will be: Second | \s+([^\s]+) | First Second Third | Find the second word | 2016-02-15T12:25:27.000Z |
123 | <ul class="breadcrumb-history list-float">[\w\W\d\D\s\S]+?<li[\w\W\d\D\s\S]+?<a[\w\W\d\D\s\S]+?">(.*?)<\/a><\/li> | <ul class="breadcrumb-history list-float">
<li class="list-float-left">
<a href="/">Nachrichten</a></li>
<li class="list-float-left">
<span>></span><a href="/politik/">Politik</a></li>
<li class="list-float-left">
<span>></span><a href="/politik/ausland/">Ausland</a></li>
<li class="list-float-left">
<span>></span><a href="/thema/us_praesidentschaftswahl_2016/">US-Präsidentschaftswahl 2016</a></li>
<li class="list-float-left"><span>></span><h1 class="so-hdln">Donald Trump droht Republikanern mit Aufständen</h1></li>
</ul> | test regex123 | 2016-03-16T13:16:44.000Z |
^[a-zA-Z\p{Latin}\s]*$
| IM | 2017-08-22T14:42:21.000Z |
||
Little bit specific. Created to comply with ClickDimensions email validation which does not follow the rules... | ^(([^@]|[a-zA-Z\d.+ -]*)(?=@)@([a-zA-Z\d-]*)\.[a-zA-Z]+)$ | Valid email addresses
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
"much.more unusual"@example.com
"[email protected]"@example.com
"very.(),:;<>[]\".VERY.\"very@\\ \"very\".unusual"@strange.example.com
[email protected]
admin@mailserver1
#!$%&'*+-/=?^_`{}|[email protected]
"()<>[]:,;@\\\"!#$%&'-/=?^_`{}| ~.a"@example.org
" "@example.org
example@localhost
[email protected]
user@localserver
user@tt
user@[IPv6:2001:DB8::1]
Invalid email addresses[edit]
saas@saas
[email protected]
Abc.example.com
A@b@[email protected]
a"b(c)d,e:f;g<h>i[j\k][email protected]
just"not"[email protected]
this is"not\[email protected]
this\ still\"not\\[email protected]
[email protected]
with caveat: Gmail lets this through, Email address#Local-part the dots altogether
[email protected] | Email validation - Click Dimensions | 2016-09-05T08:37:38.000Z |
[\w-_\d]*[@].*\.\w{2,} | mail validator | 2016-02-20T10:44:04.000Z |
||
test | ((.*)\/(.*)\/(.*) (.*):(.*):(.*)) (\[(error)\]) (\[(.*)\]) (([\t\n])?((?:[^\t\n]*[\t\n])+.*)|(.*)) | 2015/10/06 19:20:27 [error] [php] Trying to get property of non-object (/www/ussd/protected/components/Process.php:267)
Stack trace:
#0 /www/ussd/vendor/yiisoft/yii/framework/yiilite.php(3570): CInlineAction->runWithParams()
#1 /www/ussd/vendor/yiisoft/yii/framework/yiilite.php(3555): TestController->runAction()
#2 /www/ussd/vendor/yiisoft/yii/framework/yiilite.php(3545): TestController->runActionWithFilters()
#3 /www/ussd/vendor/yiisoft/yii/framework/yiilite.php(1746): TestController->run()
#4 /www/ussd/vendor/yiisoft/yii/framework/yiilite.php(1666): CWebApplication->runController()
#5 /www/ussd/vendor/yiisoft/yii/framework/yiilite.php(1191): CWebApplication->processRequest()
#6 /www/ussd/index.php(22): CWebApplication->run()
REQUEST_URI=/test/?dialog_id=32&ussd_text=*152%23&msisdn=995557231065&service_code=152 | test | 2015-10-07T09:02:29.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-17T05:38:07.000Z |
|
Useful for filename sanitization. Matches invalid filename characters. Can be used in preg_replace() calls. | ([^\p{L}\s\d\-_~,;:\[\]\(\).']) | Свидетельство о госрегистрации юрлица.jpg ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳ ⑴ ⑵ ⑶ ⑷ ⑸ ⑹ ⑺ ⑻ ⑼ ⑽ ⑾ ⑿ ⒀ ⒁ ⒂ ⒃ ⒄ ⒅ ⒆ ⒇ ⒈ ⒉ ⒊ ⒋ ⒌ ⒍ ⒎ ⒏ ⒐ ⒑ ⒒ ⒓ ⒔ ⒕ ⒖ ⒗ ⒘ ⒙ ⒚ ⒛ ⒜ ⒝ ⒞ ⒟ ⒠ ⒡ ⒢ ⒣ ⒤ ⒥ ⒦ ⒧ ⒨ ⒩ ⒪ ⒫ ⒬ ⒭ ⒮ ⒯ ⒰ ⒱ ⒲ ⒳ ⒴ ⒵ Ⓐ Ⓑ Ⓒ Ⓓ Ⓔ Ⓕ Ⓖ Ⓗ Ⓘ Ⓙ Ⓚ Ⓛ Ⓜ Ⓝ Ⓞ Ⓟ Ⓠ Ⓡ Ⓢ Ⓣ Ⓤ Ⓥ Ⓦ Ⓧ Ⓨ Ⓩ ⓐ ⓑ ⓒ ⓓ ⓔ ⓕ ⓖ ⓗ ⓘ ⓿ ─ ━ │ ┃ ┄ ┅ ┆ ┇ ┈ ┉ ┊ ┋ ┌ ┍ ⓙ ⓚ ⓛ ⓜ ⓝ ⓞ ⓟ ⓠ ⓡ ⓢ ⓣ ⓤ ⓥ ⓦ ⓧ ⓨ ⓩ ⓪ ⓫ ⓬ ⓭ ⓮ ⓯ ⓰ ⓱ ⓲ ⓳ ⓴ ┎ ┏ ┐ ┑ ┒ ┓ └ ┕ ┖ ┗ ┘ ┙ ┚ ┛ ├ ┝ ┞ ┟ ┠ ┡ ┢ ┣ ┤ ┥ ┦ ┧ ┨ ┩ ┪ ┫ ┬ ┭ ┮ ┯ ┰ ┱ ┲ ┳ ┴ ┵ ┶ ┷ ┸ ┹ ┺ ┻ ┼ ┽ ┾ ┿ ╀ ╁ ╂ реквизиты ООО''ТЕМП''.doc | FIlename sanitization regular expression | 2015-06-23T15:11:13.000Z |
Regex of the TYPO3 Extension dpn_glossary.
It ignores the children of the fetched content.
http://bit.ly/dpn_glossary | (^|[\s\>[:punct:]])(Lorem)($|[\s\<[:punct:]])(?![^<]*>|[^<>]*<\/) | 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 <a href="lorem.de">Lorem</a> 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. | dpn_glossary HTML termparser | 2014-09-10T12:21:59.000Z |
ignores the closing tags and only fixes the opening tags | <([^\/].*?):(.*?)> | </p:this>
<p:this>
| larry - second send, fixes problem | 2018-07-04T13:14:52.000Z |
(?:<(strong|em|a|div|span)[^>]*?>(?P<txt>.*?)<\/\1>|<(hr|img)[^>]*?\/>) | <p><strong style="background:red">hola mundo</strong> este es el <hrsss/> dia de <img src="" /> <em>italica</em>.<p> | Strip html tags | 2017-08-29T13:33:29.000Z |
|
(?:A|B|C|D|E|1\)|2\)|3\)|4\)|5\)){0,1}(?:\:|\.|\ ){0,1}[^0-9]{0,2}((?:[\d]{1,2}[\s|\+]{1}){0,4}[\d]{1,2})[\s]{0,1}\*[\s]{0,1}((?:[\d]{1,2}\+[\s]{0,2}){0,98}[\d]{1,2})(?![\+|\-|\d])[\s]{1,3}((?:[\d]{1,2}\+){0,98}[\d]{1,2}) | 07 12 21 23 24*01+07+
03+05+08+10+11+13+18+
19+26+28+29+30+31+32
03+04+07+08+09+12
销 轡 时 间 : 12 . . 14 07 : : 15 金 额 : 28 元
A.34+13+13+13+15+35+98-12+12+12
1aaa -foosdsdsdTom Thumb
02+13+13+13+15*05+89-89+12
5s-90
1)红球: 8 10 11 18 20 24 29
23 34
藍球: 5 15
B. 红复 : 99 10 11 18 20 24 29
藍复 : 55 15
倍 数 : 1
A.91 12 23 01 12 23 - 12 (1)
***01 12 23 9 12 23+88 (10)
3.01 12 23 9 55 23+ 88 (10)
E:01 12 23 01 12 8 - 12 x999
| 红胆拖蓝二段 | 2017-08-19T15:07:51.000Z |
|
A simple regex to match API keys for OpenWeather map. Matches `32` hexadecimal character strings. | ^[0-9A-F]{32}$ | fab4cc07260bc73302a2653aa2b0e6de
46cc38cc1039848dc287162cc4cf2532
a065c2cf24295a13725af9c5dc8cc76c
87d0f33c047915a0000ca972f3b32adc
43da9d5db71bedf3afc6f10fc8297a00
3fcca411d6774571a81a9faa4026c69a
9f36002354b2b75a069facac88ce5651
064ec24407084bf597c7dc1edc3f9017
3f5cfb400d72c7b3663b617368a0b3af | OpenWeather API Key Regex | 2023-10-24T14:29:21.000Z |
Check if it is an Italy legit mobile number | ^([+]?39)?(3)(\d{8,9})$ | 123456
+39347123456
39347123456
393471234567
+393471234567
+3934712345678
347123456
3471234567
34712345678
393203394816
+393203394816
| Is Italiy mobile number | 2016-07-31T13:22:05.000Z |
Match one or two digit hex values separated by a comma. | ^(?:[0-9A-F]{1,2})(?:,[0-9A-F]{1,2})*$ | 1,2,3,4
A,B,C,D
10,11,12,13
10,AA,BB,CC
1,x
1
FF
FF,1 | Hex Input List | 2015-07-27T23:42:24.000Z |
[0-9]+\s+(\w|\.|\-)+\s+[0-9]+(\s+(\w|\.|\-)+\s+\-\s+\w+|) | DB2 Nodes Line Check | 2015-09-24T17:02:19.000Z |
||
Filter authentication fails from /var/log/roundcube/error | ^\[[0-9]{2}-[A-Z][a-z]{2}-[0-9]{4} (?:[0-9]{2}:){2}[0-9]{2} [+|-][0-9]{4}\]: <.*> IMAP Error: Login failed for .* from (?P<host>(?:[0-9]{1,3}\.){3}[0-9]{1,3})\. AUTHENTICATE PLAIN: Authentication failed\. in /usr/share/roundcube/program/lib/Roundcube/rcube_imap\.php on line 197 \(POST /\?_task=login\?_task=login&_action=login\)$ | [16-Sep-2016 17:48:15 +0200]: <r24n59kn> IMAP Error: Login failed for ssdfsdf from 213.97.11.31. AUTHENTICATE PLAIN: Authentication failed. in /usr/share/roundcube/program/lib/Roundcube/rcube_imap.php on line 197 (POST /?_task=login?_task=login&_action=login)
[16-Sep-2016 17:48:28 +0200]: <r24n59kn> IMAP Error: Login failed for ssdfsdf from 213.97.11.31. AUTHENTICATE PLAIN: Authentication failed. in /usr/share/roundcube/program/lib/Roundcube/rcube_imap.php on line 197 (POST /?_task=login?_task=login&_action=login)
[16-Sep-2016 17:48:47 +0200]: <r24n59kn> IMAP Error: Login failed for sdfgsdfgsdfg from 213.97.11.31. AUTHENTICATE PLAIN: Authentication failed. in /usr/share/roundcube/program/lib/Roundcube/rcube_imap.php on line 197 (POST /?_task=login?_task=login&_action=login)
[16-Sep-2016 17:49:12 +0200]: <r24n59kn> IMAP Error: Login failed for sdfgsdfgsdfg from 213.97.11.31. AUTHENTICATE PLAIN: Authentication failed. in /usr/share/roundcube/program/lib/Roundcube/rcube_imap.php on line 197 (POST /?_task=login?_task=login&_action=login)
[16-Sep-2016 17:49:39 +0200]: <r24n59kn> IMAP Error: Login failed for sdfgsdfgsdfg from 213.97.11.31. AUTHENTICATE PLAIN: Authentication failed. in /usr/share/roundcube/program/lib/Roundcube/rcube_imap.php on line 197 (POST /?_task=login?_task=login&_action=login)
[16-Sep-2016 17:50:23 +0200]: <r24n59kn> IMAP Error: Login failed for sdfgsdfgsdfg from 213.97.11.31. AUTHENTICATE PLAIN: Authentication failed. in /usr/share/roundcube/program/lib/Roundcube/rcube_imap.php on line 197 (POST /?_task=login?_task=login&_action=login) | fail2ban 0.8.13-1 Debian 8 Jessie Roundcube 1.1.5+dfsg.1-1~bpo8+1 | 2016-09-17T08:26:29.000Z |
Parse the ALT field (alternative allele) in VCF 4.1 format | ^([acgtnACGTN]+)$|^<(INS|DEL|DUP|INV|CNV|DUP:TANDEM|INS:NOVEL|INS:ME|DEL:ME)>$ | <DEL:ME> | Parse alternative allele in VCF 4.1 | 2018-07-02T14:00:25.000Z |
(= WINDOW[ ]*\n)(.*?)(SPACER-TYPE) | "Window 491" = WINDOW
GLASS-TYPE = "Baseline Window"
X = 8
SPACER-TYPE = ALUMINUM
PIPI = CACA
..
"Window 491" = WINDOW
GLASS-TYPE = "Baseline Window"
X = 8
SPACER-TYPE = ALUMINUM
PIPI = CACA
.. | Window Spacer type | 2015-05-18T15:11:57.000Z |
|
([^\/]+)\/$ | http://christopherschmitt.com/2015/07/21/i-cant-complain/ | CS.com to C.org | 2016-03-02T21:12:10.000Z |
|
(\[\[[a-zA-Z]*\:) | [[File:Johann Sebastian Bach signature.svg|right|250px|alt=signature written in ink in a flowing script]] | Match wikitext link prefix | 2016-04-13T04:26:40.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.