description
stringlengths
0
8.24k
regex
stringlengths
1
26.3k
text
stringlengths
0
2.47M
title
stringlengths
1
150
created_at
stringlengths
24
24
Parses an R-Type Mips instruction. You can add and remove instructions in the list to support more R-Type instructions. Will detect only "add", "and", "nor" or "sub" as is
^\s*(add|and|nor|or|sub)\s*(\$[a-z0-9]{2,4}),\s*(\$[a-z0-9]{2,4}),\s*(\$[a-z0-9]{2,4})\s*$
add $t3,$s3,$s5 add $t3,$s3,$s5 add $v0,$t0,$t0 add $v0,$t0,$t0 and $t2,$t3,$t4 and $t2,$t3,$t4 nor $s0,$s5,$s2 nor $s0,$s5,$s2 or $s0,$s0,$s1 or $s0,$s0,$s1 or $s0,$s2,$s5 or $s0,$s2,$s5 sub $s3,$t0,$t1 sub $s3,$t0,$t1 sub $t0,$zero,$t1 sub $t0,$zero,$t1 sub $t1,$t4,$t8 sub $t1,$t4,$t8
Mips R-Type Instructions
2014-10-01T04:20:39.000Z
^0000-00-00(T00:00(:00)?(\.000)?(Z|([\-+][0-9]{2}:?[0-9]{2}))?)?$
nullDateTime
2015-11-17T12:14:13.000Z
Turkey mobile phone number Regex format 0(5__) ___-____
^0[.\(\/]5[0-9][0-9][.\)\/][.\ \/][1-9]([0-9]){2}[.\-\/]([0-9]){4}$
0(545) 355-1531
Turkey mobile phone number 0(5__) ___-____
2016-03-15T13:31:55.000Z
this is a white list regex that invalidates input with <>"=
^(\s|\w|\d|\.|\,|\;|\:|\?|\!|\@|\#|\$|\%|\^|\&|\*|\(|\)|\_|\~|\`|\'|\\|\-|\/|\+)*?$
\";alert('XSS');// </script><script>alert("XSS");</script>
anti-xss regex
2015-12-11T03:58:18.000Z
Find all JIRA H2 from an Inline MD. - In MD all `#` are considered H1 in JIRA Syntax - In MD all `##` are considered H2 in JIRA Syntax - In MD all `###` are considered H3 in JIRA Syntax - In MD all `####` are considered H4 in JIRA Syntax
##\s(.)*?\\n
## Overview\nAffected versions of [deep-extend](https://www.npmjs.com/package/deep-extend) are vulnerable to Prototype Pollution. Utilities function in all the listed modules can be tricked into modifying the prototype of \"Object\" when the attacker control part of the structure passed to these function. This can let an attacker add or modify existing property that will exist on all object.\n\n## PoC by HoLyVieR\n```js\nvar merge = require('deep-extend');\nvar malicious_payload = '{\"__proto__\":{\"oops\":\"It works !\"}}';\n\nvar a = {};\nconsole.log(\"Before : \" + a.oops);\nmerge({}, JSON.parse(malicious_payload));\nconsole.log(\"After : \" + a.oops);\n```\n\n## Remediation\nUpgrade `deep-extend` to version 0.5.1 or higher.\n\n## References\n- [HackerOne Report](https://hackerone.com/reports/311333)\n- [GitHub Commit](https://github.com/unclechu/node-deep-extend/commit/433ee51ed606f4e1867ece57b6ff5a47bebb492f)\n- [GitHub PR](https://github.com/unclechu/node-deep-extend/pull/40)\n- [GitHub Issue](https://github.com/unclechu/node-deep-extend/issues/39)
Find all JIRA H2 from Inline MD
2018-07-25T12:58:32.000Z
Super simple, just checks for 5 or more letters/numbers/symbols.
^[A-Za-z\d@!?\-_.]{5,}$
[email protected] test-test test_test test123 test!? test!23 testing testin%g testing% %testing
Username Validation
2021-08-02T11:40:53.000Z
^\+[0-2]{1}[0-9]{1}[0-2]{1}[0-5]{1}$
+0163 +0125 +022529 d1234 D1234 D123 p1234 +01 +2115 +0000 +0105 +2528 00+ 01+ 11+ 25+ 26+ 27+ 01+24+03+04+ 15 01 11 1 2 3 4
Duque de Grupo
2018-11-13T20:15:14.000Z
Search for missing 'ementas'.
^Data de registro: .*\n\n
null
Missing Ementas
2018-09-05T18:51:46.000Z
regex for lazada share link from mobile apps
ERROR: type should be string, got "https:\\/\\/s\\.lazada\\.co\\.id\\/s.([\\w.'_-]+)"
https://shp.ee/auu7tfs.sa
lazada share mobile url
2023-05-06T02:48:14.000Z
(https:\/\/provider.sharespaceapp.swisscom.com((?!:(443|80)(($)|(\/))))(?:(?:(?::)(\d*)))?(?:(?:(\/latest)(?=\/))|(?:(\/latest)($)))?)
https://provider.sharespaceapp.swisscom.com:44303/latest/scripts/sharespace.js
Select No Std Port Base Urls Including Latest Part String
2017-09-19T14:08:35.000Z
(?<action>.+)\((?<line_number>\d+)\): Notify: Transaction "(?<transaction_name>.+)" ended with a "(?<transaction_status>.+)" status \(Duration: (?<duration>[\d\.]+) Wasted Time: (?<wasted_time>[\d\.]+)\). \[MsgId: (?<msg_id>.+)\]
vuser_init.c(48): Notify: Transaction "UC_13_StartPage" ended with a "Pass" status (Duration: 0.4534 Wasted Time: 0.0002). [MsgId: MMSG-16871]
load_runner_transaction_end
2015-11-30T13:09:35.000Z
([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)
Muisven 3 6031HT Nederweert 0031495460390 0031647763111 [email protected]
Get Email Address from string
2016-02-15T10:17:16.000Z
Gets year month date hour minute seconds and time zone value yyyy-mm-dd hh:mm:ss UTC $1 $2 $3 $4 $5 $6 $7
(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2}) (\w+)
2015-10-29 03:00:00 UTC
/(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2}) (\w+)/g
2015-10-29T05:32:19.000Z
"[^a-zA-Z\'\s@\%1-9/\:\\?]"
nlc variation
2016-06-09T12:41:27.000Z
([B,L]C[1,2,3]-C[5,6,7][A,E]0[1,2,4]-\d\d\d)|([B,L]C[1,2,3]-C[5,6,7]0[1,2,4]-\d\d\d)|([B,L]C[1,2,3]-C[5,6,7]E[1,2,5][0,5])|(LC3-C5E100)
BC1-C502-111-305-G LC1-C5E02-128 LC1-C5E02-128 BC1-C502-111-G LC1-C5E04-128 BC1-C504-111-305-G LC1-C5E04-328 BC1-C504-111-G LC1-C5E04-122 BC1-C5E01-111 LC1-C5E04-322 BC1-C5E01-111-500-G LC1-C604-128 BC1-C5E02-111 LC1-C604-328 BC1-C5E02-111-100 LC1-C604-122 BC1-C5E02-111-100-G LC1-C604-322 BC1-C5E02-111-305-G LC1-C6A04-121 BC1-C5E02-128 LC1-C6A04-621 BC1-C5E02-128-305-G LC1-C6A04-626 BC1-C5E02-328 LC1-C6A04-627 BC1-C5E02-328-305-G LC1-C6A04-622 BC1-C5E04-111 LC1-C704-621 BC1-C5E04-111-100 LC1-C704-627 BC1-C5E04-111-100-G LC1-C704-626 BC1-C5E04-111-305-G LC1-C704-622 BC1-C5E04-128 LC1-C5E01-100 BC1-C5E04-128-100 LC1-C5E02-111 BC1-C5E04-128-100-G LC1-C5E02-111-100 BC1-C5E04-128-305-G LC1-C5E02-121 BC1-C5E04-311 BC1-C5E04-311-305-G LC1-C5E02-311 BC1-C5E04-328 LC1-C5E02-321 BC1-C5E04-328-305-G LC1-C5E04-111 BC3-C5E02-339 LC1-C5E04-111-100 BC3-C5E02-339-500-G LC1-C5E04-113 BC3-C5E04-139 LC1-C5E04-121 BC3-C5E04-139-100 LC1-C5E04-121-100 BC3-C5E04-139-100-G LC1-C5E04-124 BC3-C5E04-139-305-G LC1-C5E04-126 BC3-C5E04-339 LC1-C5E04-127 BC3-C5E04-339-305-G LC1-C5E04-311 BC3-C5E04-359 LC1-C5E04-321 BC3-C5E04-359-305-G LC1-C5E04-327 LC2-C5E04-111 LC2-C5E04-121 LC2-C5E04-121-100 LC1-C604-111 LC1-C5E02-122 LC1-C604-121 LC1-C604-126 LC1-C604-127 LC1-C604-311 LC1-C5E02-322 LC1-C604-326 LC1-C604-327 LC2-C604-121 LC1-C5E04-112 LC1-C6A04-611 LC1-C5E100-111 LC1-C5E04-114 LC1-C5E100-121 LC1-C5E04-118 LC1-C5E100-311 LC1-C5E100-321 LC1-C5E10-111 LC1-C5E10-121 LC1-C5E10-311 LC1-C5E10-321 LC1-C5E25-111 LC1-C5E25-121 LC1-C5E25-311 LC1-C5E25-321 LC1-C5E50-111 LC1-C5E50-121 LC1-C5E50-311 LC1-C5E50-321 LC3-C5E02-339 LC3-C5E04-129 LC3-C5E04-139 LC3-C5E04-139-100 LC3-C5E04-159 LC3-C5E04-189 LC1-C604-112 LC1-C604-114 LC1-C604-118 LC1-C604-321 LC1-C6A04-612 LC2-C604-111 LC3-C5E04-169 LC3-C5E04-179 LC3-C5E04-329 LC3-C5E04-339 LC3-C5E04-359 LC3-C5E04-369 LC3-C5E04-379 LC3-C5E04-389 LC3-C5E100-139 LC3-C5E100-339 LC3-C5E10-139 LC3-C5E10-339 LC3-C5E25-139 LC3-C5E25-339 LC3-C5E50-139 LC3-C5E50-339 LC3-C604-129 LC3-C604-139 LC3-C604-329 LC3-C604-339 BC1-C502-111-305-G LC1-C5E02-128 LC1-C5E02-128 BC1-C502-111-G LC1-C5E04-128 BC1-C504-111-305-G LC1-C5E04-328 BC1-C504-111-G LC1-C5E04-122 LC1-C5E04-322 LC1-C604-128 BC1-C5E02-111 LC1-C604-328 BC1-C5E02-111-100 LC1-C604-122 BC1-C5E02-111-100-G LC1-C604-322 BC1-C5E02-111-305-G LC1-C6A04-121 BC1-C5E02-128 LC1-C6A04-621 BC1-C5E02-128-305-G LC1-C6A04-626 BC1-C5E02-328 LC1-C6A04-627 LC1-C6A04-622 LC1-C704-621 BC1-C5E04-111-100 LC1-C704-627 LC1-C704-626 BC1-C5E04-111-305-G LC1-C704-622 BC1-C5E04-128 LC1-C5E01-100 BC1-C5E04-128-100 LC1-C5E02-111 BC1-C5E04-128-100-G LC1-C5E02-111-100 BC1-C5E04-128-305-G LC1-C5E02-121 BC1-C5E04-311 BC1-C5E04-311-305-G LC1-C5E02-311 BC1-C5E04-328 LC1-C5E02-321 BC1-C5E04-328-305-G LC1-C5E04-111 LC1-C5E04-111-100 BC3-C5E02-339-500-G LC1-C5E04-113 LC1-C5E04-121 BC3-C5E04-139-100 LC1-C5E04-121-100 BC3-C5E04-139-100-G LC1-C5E04-124 BC3-C5E04-139-305-G LC1-C5E04-126 LC1-C5E04-127 BC3-C5E04-339-305-G LC1-C5E04-311 LC1-C5E04-321 BC3-C5E04-359-305-G LC1-C5E04-327 LC2-C5E04-111 LC2-C5E04-121 LC2-C5E04-121-100 LC1-C604-111 LC1-C604-121 LC1-C604-126 LC1-C604-127 LC1-C604-311 LC1-C604-326 LC1-C604-327 LC2-C604-121 LC1-C6A04-611 LC1-C5E100-111 LC1-C5E100-121 LC1-C5E100-311 LC1-C5E100-321 LC1-C5E10-111 LC1-C5E10-121 LC1-C5E10-311 LC1-C5E10-321 LC1-C5E25-111 LC1-C5E25-121 LC1-C5E25-311 LC1-C5E25-321 LC1-C5E50-111 LC1-C5E50-121 LC1-C5E50-311 LC1-C5E50-321 LC3-C5E02-339 LC3-C5E04-129 LC3-C5E04-139 LC3-C5E04-139-100 LC3-C5E04-159 LC3-C5E04-189 LC3-C5E04-329 LC3-C5E04-339 LC3-C5E04-359 LC3-C5E04-379 LC3-C5E04-389 LC3-C5E100-139 LC3-C5E100-339 LC3-C5E10-139 LC3-C5E10-339 LC3-C5E25-139 LC3-C5E25-339 LC3-C5E50-139 LC3-C5E50-339 LC3-C604-129 LC3-C604-139 LC3-C604-329 LC3-C604-339 BC1-C5E01-111-500-G BC1-C5E02-328-305-G BC1-C5E04-111-100-G
article group
2019-08-12T13:33:48.000Z
244[9][19]\d{7}
244929164344 244915392194 244943757798 244922955344 244914094882 244990824719 244991259647 244925212121 244954000000 244964000000
Movicel RegEx
2018-11-16T14:00:11.000Z
^BUN\D*([\d]*[\.\s\n]*[\d]*)\D*
BuN 16. 7 (H) [0-20 mg/l] CUN 17.8(H) [0-20 mg/l] DUN 18.9[0-20 mg/l] EUN 19.0asdf;alksjdfa [0-20 mg/l]
BUN
2021-02-26T19:12:51.000Z
gutoregex
^(?<atributo>(?<pai>(?:[^=.\n]+)\.?){1,6})=(?<valor>(?:[^=\n]+))$
php.environment.ini.session-name = sisicmbio php.environment.ini.session-cookie_domain = icmbio.gov.br php.environment.ini.session-auto_start = false php.environment.ini.session-cookie_path = / php.environment.ini.session-cookie_lifetime = 10800 php.environment.ini.session-cookie_httponly = true php.environment.ini.session-use_only_cookie = true php.environment.ini.session-gc_maxlifetime = 10800 php.environment.ini.session-cache_expire = 180 ;; [php server mail] php.mail.sender = smtp php.mail.from = [email protected] ; conta default usada para enviar mensagens php.mail.replyTo = [email protected] ; conta usada para reply php.mail.wordWrap = 60 php.mail.priority = 3 ; 1: high, 3: normal, 5: low php.mail.encoding = 8bit ; 8bit, 7bit, binary, base64, quoted-printable php.mail.charset = utf-8 php.mail.contentType = text/html
guto
2015-05-29T14:13:13.000Z
(0?[1-9]|([12]\d)|30)(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)((1[6-9]|[2-9]\d)\d{2})\ (?:[0-1]?[0-9]|[2][1-4]):[0-5]?[0-9]:[0-5]?[0-9]
Sep 3 15:10:54 192.168.99.1 Checkpoint: 3Sep2007 15:10:28 accept 192.168.99.1 >eth2 rule: 9; rule_uid: {11111111-2222-3333-8A67-F54CED606693}; service_id: domain-udp; src: 200.14.120.9; dst: 192.168.99.184; proto: udp; product: VPN-1 & FireWall-1; service: 53; s_port: 32769;
Timestamp - dMMM yyyy HH:mm:ss
2018-11-21T05:58:49.000Z
^([A-Z0-9]*[\w\s()-]*\.\.\.{1})
Programme lots agate
2018-05-29T14:50:45.000Z
[\w\n;,.!'\-: ]*\n [A-Z ]*\.([\w\n;,.!'\-: ]*Eye of newt[\w\n;,.!'\-: ]*?)\n\n
daily 204
2015-03-04T10:40:36.000Z
A string with only numbers in
^[0-9]+$
only numbers
2015-11-26T16:19:12.000Z
contact email validator updated for dash and number in domain TLD
^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z\-0-9]{2,}))$
contact email validator updated
2016-01-31T02:58:01.000Z
Eclipse SPECGRID Keyword for Javascrip
SPECGRID.*?\n([ \d]+)[\s\S]*?\/
-- Generated [ -- Format : ECLIPSE keywords (grid geometry and properties) (ASCII) -- Exported by : Petrel 2014.4 (64-bit) Schlumberger -- User name : RDandekar -- Date : Tuesday, May 31 2016 13:41:15 -- Project : GlenlothDynamic.pet -- Grid : Part of Wide grid 500 -- Generated ] PINCH -- Generated : Petrel / NOECHO -- Generated : Petrel MAPUNITS -- Generated : Petrel METRES / MAPAXES -- Generated : Petrel 159589.61 7782837.94 159589.61 7783837.94 160589.61 7783837.94 / GRIDUNIT -- Generated : Petrel METRES / SPECGRID -- Generated : Petrel 3 26 120 1 F / COORDSYS -- Generated : Petrel 1 120 / COORD -- Generated : Petrel 6465.48
EclipseSPECGRIDKeywordForJavaScript
2016-08-26T06:10:44.000Z
First iteration of Property/(Yield)Function/Event Parser for Roblox API Dump
^\s(?P<ValueType>\w+)\s(?P<DataType>\w+)?\s?Instance[\.\:](?P<Inheritance>\w+) ?(?P<TagsOrArguments>.+)?
Class Instance [notbrowsable] Property bool Instance.Archivable Property string Instance.ClassName [readonly] Property int Instance.DataCost [readonly] [RobloxPlaceSecurity] Property string Instance.Name Property Object Instance.Parent Property bool Instance.RobloxLocked [PluginSecurity] Property bool Instance.archivable [hidden] Property string Instance.className [deprecated] [readonly] Function void Instance:ClearAllChildren() Function Instance Instance:Clone() Function void Instance:Destroy() Function Instance Instance:FindFirstChild(string name, bool recursive = false) Function Objects Instance:GetChildren() Function string Instance:GetDebugId(int scopeLength = 4) [notbrowsable] [PluginSecurity] Function string Instance:GetFullName() Function bool Instance:IsA(string className) Function bool Instance:IsAncestorOf(Instance descendant) Function bool Instance:IsDescendantOf(Instance ancestor) Function void Instance:Remove() [deprecated] Function Objects Instance:children() [deprecated] Function Instance Instance:clone() [deprecated] Function void Instance:destroy() [deprecated] Function Instance Instance:findFirstChild(string name, bool recursive = false) [deprecated] Function Objects Instance:getChildren() [deprecated] Function bool Instance:isA(string className) [deprecated] Function bool Instance:isDescendantOf(Instance ancestor) [deprecated] Function void Instance:remove() [deprecated] YieldFunction Instance Instance:WaitForChild(string childName) Event Instance.AncestryChanged(Instance child, Instance parent) Event Instance.Changed(Property property) Event Instance.ChildAdded(Instance child) Event Instance.ChildRemoved(Instance child) Event Instance.DescendantAdded(Instance descendant) Event Instance.DescendantRemoving(Instance descendant) Event Instance.childAdded(Instance child) [deprecated] Class Accoutrement : Instance Property Vector3 Accoutrement.AttachmentForward Property CoordinateFrame Accoutrement.AttachmentPoint Property Vector3 Accoutrement.AttachmentPos Property Vector3 Accoutrement.AttachmentRight Property Vector3 Accoutrement.AttachmentUp Class Hat : Accoutrement Class AdService : Instance [notCreatable] Function void AdService:ShowVideoAd() Event AdService.VideoAdClosed() Class AdvancedDragger : Instance Class Animation : Instance Property Content Animation.AnimationId Class AnimationController : Instance Function Array AnimationController:GetPlayingAnimationTracks() Function Instance AnimationController:LoadAnimation(Instance animation) Event AnimationController.AnimationPlayed(Instance animationTrack) Class AnimationTrack : Instance Property Object AnimationTrack.Animation [readonly] Property bool AnimationTrack.IsPlaying [readonly] Property float AnimationTrack.Length [readonly] Property AnimationPriority AnimationTrack.Priority Property float AnimationTrack.TimePosition Function void AnimationTrack:AdjustSpeed(float speed = 1) Function void AnimationTrack:AdjustWeight(float weight = 1, float fadeTime = 0.100000001) Function double AnimationTrack:GetTimeOfKeyframe(string keyframeName) Function void AnimationTrack:Play(float fadeTime = 0.100000001, float weight = 1, float speed = 1) Function void AnimationTrack:Stop(float fadeTime = 0.100000001) Event AnimationTrack.KeyframeReached(string keyframeName) Event AnimationTrack.Stopped() [deprecated] Class AnimationTrackState : Instance Class Animator : Instance Function Instance Animator:LoadAnimation(Instance animation) Class AssetService : Instance Function void AssetService:SetAssetRevertUrl(string revertUrl) [LocalUserSecurity] Function void AssetService:SetAssetVersionsUrl(string versionsUrl) [LocalUserSecurity] Function void AssetService:SetPlaceAccessUrl(string accessUrl) [LocalUserSecurity] YieldFunction int AssetService:CreatePlaceAsync(string placeName, int templatePlaceID, string description = ) YieldFunction int AssetService:CreatePlaceInPlayerInventoryAsync(Instance player, string placeName, int templatePlaceID, string description = ) YieldFunction Dictionary AssetService:GetAssetVersions(int placeId, int pageNum = 1) YieldFunction int AssetService:GetCreatorAssetID(int creationID) YieldFunction Instance AssetService:GetGamePlacesAsync() YieldFunction Dictionary AssetService:GetPlacePermissions(int placeId) YieldFunction bool AssetService:RevertAsset(int placeId, int versionNumber) YieldFunction void AssetService:SavePlaceAsync() YieldFunction bool AssetService:SetPlacePermissions(int placeId, AccessType accessType = Everyone, Array inviteList = {}) Class BadgeService : Instance [notCreatable] Function void BadgeService:SetAwardBadgeUrl(string url) [LocalUserSecurity] Function void BadgeService:SetHasBadgeCooldown(int seconds) [LocalUserSecurity] Function void BadgeService:SetHasBadgeUrl(string url) [LocalUserSecurity] Function void BadgeService:SetIsBadgeDisabledUrl(string url) [LocalUserSecurity] Function void BadgeService:SetIsBadgeLegalUrl(string url) [LocalUserSecurity] Function void BadgeService:SetPlaceId(int placeId) [LocalUserSecurity] YieldFunction bool BadgeService:AwardBadge(int userId, int badgeId) YieldFunction bool BadgeService:IsDisabled(int badgeId) YieldFunction bool BadgeService:IsLegal(int badgeId) YieldFunction bool BadgeService:UserHasBadge(int userId, int badgeId) Event BadgeService.BadgeAwarded(string message, int userId, int badgeId) [RobloxScriptSecurity] Class BasePlayerGui : Instance Class CoreGui : BasePlayerGui [notbrowsable] [notCreatable] Property Object CoreGui.SelectionImageObject [RobloxScriptSecurity] Property int CoreGui.Version [readonly] Class PlayerGui : BasePlayerGui [notCreatable] Property Object PlayerGui.SelectionImageObject Function float PlayerGui:GetTopbarTransparency() Function void PlayerGui:SetTopbarTransparency(float transparency) Event PlayerGui.TopbarTransparencyChangedSignal(float transparency) Class StarterGui : BasePlayerGui Property bool StarterGui.ResetPlayerGuiOnSpawn Property bool StarterGui.ShowDevelopmentGui Function bool StarterGui:GetCoreGuiEnabled(CoreGuiType coreGuiType) Function void StarterGui:RegisterGetCore(string parameterName, Function getFunction) [RobloxScriptSecurity] Function void StarterGui:RegisterSetCore(string parameterName, Function setFunction) [RobloxScriptSecurity] Function void StarterGui:SetCore(string parameterName, Variant value) Function void StarterGui:SetCoreGuiEnabled(CoreGuiType coreGuiType, bool enabled) YieldFunction Variant StarterGui:GetCore(string parameterName) Event StarterGui.CoreGuiChangedSignal(CoreGuiType coreGuiType, bool enabled) [RobloxScriptSecurity] Class BinaryStringValue : Instance Class BindableEvent : Instance Function void BindableEvent:Fire(Tuple arguments) Event BindableEvent.Event(Tuple arguments) Class BindableFunction : Instance YieldFunction Tuple BindableFunction:Invoke(Tuple arguments) Callback Tuple BindableFunction.OnInvoke(Tuple arguments) Class BodyMover : Instance Class BodyAngularVelocity : BodyMover Property Vector3 BodyAngularVelocity.AngularVelocity Property Vector3 BodyAngularVelocity.MaxTorque Property float BodyAngularVelocity.P Property Vector3 BodyAngularVelocity.angularvelocity Property Vector3 BodyAngularVelocity.maxTorque Class BodyForce : BodyMover Property Vector3 BodyForce.Force Property Vector3 BodyForce.force Class BodyGyro : BodyMover Property CoordinateFrame BodyGyro.CFrame Property float BodyGyro.D Property Vector3 BodyGyro.MaxTorque Property float BodyGyro.P Property CoordinateFrame BodyGyro.cframe [deprecated] Property Vector3 BodyGyro.maxTorque [deprecated] Class BodyPosition : BodyMover Property float BodyPosition.D Property Vector3 BodyPosition.MaxForce Property float BodyPosition.P Property Vector3 BodyPosition.Position Property Vector3 BodyPosition.maxForce [deprecated] Property Vector3 BodyPosition.position [deprecated] Function Vector3 BodyPosition:GetLastForce() Function Vector3 BodyPosition:lastForce() [deprecated] Event BodyPosition.ReachedTarget() Class BodyThrust : BodyMover Property Vector3 BodyThrust.Force Property Vector3 BodyThrust.Location Property Vector3 BodyThrust.force [deprecated] Property Vector3 BodyThrust.location [deprecated] Class BodyVelocity : BodyMover Property Vector3 BodyVelocity.MaxForce Property float BodyVelocity.P Property Vector3 BodyVelocity.Velocity Property Vector3 BodyVelocity.maxForce [deprecated] Property Vector3 BodyVelocity.velocity [deprecated] Function Vector3 BodyVelocity:GetLastForce() Function Vector3 BodyVelocity:lastForce() Class RocketPropulsion : BodyMover Property float RocketPropulsion.CartoonFactor Property float RocketPropulsion.MaxSpeed Property float RocketPropulsion.MaxThrust Property Vector3 RocketPropulsion.MaxTorque Property Object RocketPropulsion.Target Property Vector3 RocketPropulsion.TargetOffset Property float RocketPropulsion.TargetRadius Property float RocketPropulsion.ThrustD Property float RocketPropulsion.ThrustP Property float RocketPropulsion.TurnD Property float RocketPropulsion.TurnP Function void RocketPropulsion:Abort() Function void RocketPropulsion:Fire() Function void RocketPropulsion:fire() [deprecated] Event RocketPropulsion.ReachedTarget() Class Test : Testing [readonly] [RobloxPlaceSecurity] Property bool Testing.ReadOnlyAndSecure [readonly] [RobloxPlaceSecurity]
Roblox API Dump Class Inheritance Parser
2015-08-30T21:56:21.000Z
Gets the canonical link from a html page provided it has one
<link rel="canonical" href="(.*?)">
const regex = /"sku": "(.*?)"/gm; // Alternative syntax using RegExp constructor // const regex = new RegExp('"sku": "(.*?)"', 'gm') const str = ``<!DOCTYPE html> <!-- saved from url=(0044)https://www.daz3d.com/karmen-9-hd-pro-bundle --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class=""><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Karmen 9 HD Pro Bundle | Daz 3D</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="&lt;p&gt;Introducing the Karmen 9 HD Pro Bundle. This all-inclusive bundle features a vibrant makeup look, expressions, a curly and braided bun hairstyle, apocalyptic-inspired outfits, Elemental Mage and Shadow Realm attire, and even monstrous poses to immerse "> <meta name="keywords" content="Karmen 9 HD Pro Bundle"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="robots" content="INDEX,FOLLOW,noai, noimageai"> <link rel="icon" href="https://www.daz3d.com/static/images/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="https://www.daz3d.com/static/images/favicon.ico" type="image/x-icon"> <!--[if lt IE 7]> <script type="text/javascript"> //<![CDATA[ var BLANK_URL = '/js/blank.html'; var BLANK_IMG = '/js/spacer.gif'; //]]> </script> <![endif]--> <link rel="stylesheet" href="./Karmen 9 HD Pro Bundle _ Daz 3D_files/design-533ce80c63b6085aedc802b14d1faa79.css" about="0"> <link rel="stylesheet" href="./Karmen 9 HD Pro Bundle _ Daz 3D_files/product_zoom-5de5dd875434871413473d85f684dcfc.css" about="1"> <style> @keyframes spinner { 0% { transform: translateY(-50%) rotate(0deg); } 100% { transform: translateY(-50%) rotate(360deg); } } .spinner::after { animation: 1.5s linear infinite spinner; animation-play-state: inherit; border: solid 3px #cfd0d1; border-bottom-color: #1c87c9; border-radius: 50%; content: ""; height: 20px; width: 20px; display: inline-flex; flex-direction: column; padding-bottom: 5px; } </style> <script src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/getIds" type="text/javascript" async=""></script><script type="text/javascript" id="www-widgetapi-script" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/www-widgetapi.js.download" async=""></script><script async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/fbevents.js.download"></script><script type="text/javascript" async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/bat.js.download"></script><script type="text/javascript" async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/pixel.js.download"></script><script type="text/javascript" async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/analytics.js.download"></script><script type="text/javascript" async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/js"></script><script type="text/javascript" async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/destination"></script><script src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/tag.js.download" type="text/javascript" async="" id="cjapitag"></script><script async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/affirm.js.download"></script><script type="text/javascript" async="" src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/0"></script><script src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/core-ed1ca31447e4f2e9bbf6d9ef38afe3c6.js.download"></script> <style> @keyframes spinner { 0% { transform: translateY(-50%) rotate(0deg); } 100% { transform: translateY(-50%) rotate(360deg); } } .spinner::after { animation: 1.5s linear infinite spinner; animation-play-state: inherit; border: solid 3px #cfd0d1; border-bottom-color: #1c87c9; border-radius: 50%; content: ""; height: 20px; width: 20px; display: inline-flex; flex-direction: column; padding-bottom: 5px; } </style> <script src="./Karmen 9 HD Pro Bundle _ Daz 3D_files/zoom-fee76dde1f2c855960b29036b231c115.js.download"></script> <script type="application/ld+json">{ "brand": { "name": "Daz 3D", "@type": "Brand" }, "@context": "https://schema.org/", "description": "Introducing the Karmen 9 HD Pro Bundle. This all-inclusive bundle features a vibrant makeup look, expressions, a curly and braided bun hairstyle, apocalyptic-inspired outfits, Elemental Mage and Shadow Realm attire, and even monstrous poses to immerse your character into any narrative from modern desert to fantasy to horror.", "image": "https://gcdn.daz3d.com/p/91909/i/shimuzu_Karmen_Pro_Bundle.jpg", "name": "Karmen 9 HD Pro Bundle", "offers": { "availability": "https://schema.org/InStock", "itemCondition": "https://schema.org/NewCondition", "price": 185.99, "priceCurrency": "USD", "@type": "Offer" }, "sku": "91909", "@type": "Product" }</script> <link rel="canonical" href="https://www.daz3d.com/karmen-9-hd-pro-bundle"> <script> if (!daz) { var daz = {}; }; daz.api = new DazApi() from 331.2deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 93% { border-image: conic-gradient( from 334.8deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 94% { border-image: conic-gradient( from 338.4deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 95% { border-image: conic-gradient( from 342deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 96% { border-image: conic-gradient( from 345.6deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 97% { border-image: conic-gradient( from 349.2deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 98% { border-image: conic-gradient( from 352.8deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 99% { border-image: conic-gradient( from 356.4deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } 100% { border-image: conic-gradient( from 360deg, var(--border-color-1), var(--border-color-2), var(--border-color-1), var(--border-color-2), var(--border-color-1) ) 1; } } } /* END rotate bonus box border */ /* BEGIN falling stars animation */ .bg-stars { width: 100%; height: 100%; position: absolute; top: 0; left: 0; overflow: hidden; } .bg-stars .bg-star { font-size: 1em; position: absolute; top: -25px; color: yellow; user-select: none; cursor: default; text-shadow: 0 0 1px #000; animation-name: fallingStars; animation-duration: 5s; animation-timing-function: linear; animation-iteration-count: infinite; animation-play-state: running; z-index: -1; } .bg-stars .bg-star:nth-of-type(1) { left: 10%; -webkit-animation-delay: 1s, 1s; animation-delay: 1s, 1s; } .bg-stars .bg-star:nth-of-type(2) { left: 20%; </div></body></html>(`; let m; while ((m = regex.exec(str)) !== null) { // This is necessary to avoid infinite loops with zero-width matches if (m.index === regex.lastIndex) { regex.lastIndex++; } // The result can be accessed through the `m`-variable. m.forEach((match, groupIndex) => { console.log(`Found match, group ${groupIndex}: ${match}`); }); }
Get a canonical link from html page
2023-11-23T23:01:01.000Z
<(?:(?<tag>[^\/<>\s]+)(?:\s+(?<attr>[^=>]*)="(?<value>[^"]*)")*|\/?(?<close>(?&tag))\/?)>
<div id="lorem" class="ipsum">Hello World</div><div class="lorem">Ciao mondo<a href="#">clicca qui</a></div><div id="lorem" class="ipsum">Hello World</div><div class="lorem">Ciao mondo<a href="#">clicca qui</a></div>
HTML tags and attributes
2018-12-28T12:51:35.000Z
// **Sri Lankan Modern Licence Number Plate Regex** // FORMAT : PP LLL DDDD PP - Province (SP, NW, WP, UP, CP, NC, SG, EP, NP) LLL - 3 Letter DDDD - 4 Digits Regex : ^([A-Z]{1,2})\s([A-Z]{1,3})\s([0-9]{4}(?<!0{4})) MATCHING SAMPLES: * SP ABC 3429 * NW AWD 3421 # By Hashan Shalitha
^([A-Z]{1,2})\s([A-Z]{1,3})\s([0-9]{4}(?<!0{4}))
# Sri Lankan Modern Licence Number Plate Regex # 1-0001 10-0010 111-0000 000-1112 A-3049 KJ-6825 AAC-3422 SP ABC 3429
Sri Lankan Modern Licence Number Plate Regex
2020-07-30T14:46:34.000Z
(Mayfield)\s(.*?\.)
Baker Mayfield has apologized to Daniel Jones. That’s good. Let’s hope that Mayfield also apologized to Lincoln Riley and Joe Castiglione. Mayfield made news this week when GQ magazine published an interview with Mayfield in which the Cleveland Browns quarterback ripped the New York Giants for drafting quarterback Daniel Jones and said his 2017 flag-planting at Ohio State was coerced by OU officials. There comes a time when young men need to grow up, and for Mayfield, that time is now. Or last year, when the Browns made him the face of their beleaguered franchise. Being interesting is good. Being provocative is OK. Being a rascal who makes enemies is silly in the hardened world of pro football. After OU won 31-16 at Ohio State on September 9, 2017, Mayfield famously planted a Sooner flag on the Ohio Stadium turf. He issued an apology a few days later – which frankly, in Mayfield’s defense, wasn’t necessary. Who cares, so long as Mayfield didn’t damage any Buckeye facilities and didn’t instigate any conflicts with fans or players? I always thought too much was made of the Oklahoma tradition of stakes-claiming, which goes back to the Land Run and is replicated in the Cotton Bowl when OU happens to beat Texas. But still, it became a big deal, OU officials – I assume athletic director Castiglione and perhaps then-president David Boren – thought an apology was in order, maybe for public relations reasons only, so Mayfield issued one. Then a few days later, Riley said that the apology was Mayfield’s idea. Maybe it wasn’t, maybe it was. Probably wasn’t, knowing Mayfield. So Riley very well could have been lying, which is a good lesson for Riley but sort of beside the point on this discussion. Riley stuck up for Mayfield. Always did, really, even after that notorious crotch-grabbing incident at Kansas later in the season. Fast forward two years, and Mayfield says that Riley was not telling the truth. Mayfield told GQ that on a scale of 1-10, his apology was “zero” heartfelt. “Zero. Absolutely not … It was an emotional game, and so after the game, I did not mean for it to be disrespectful toward any Ohio State people at all, especially not the team or the players. They’re a great team, a great program, so I didn’t mean for it to be disrespectful at all. “We do the flag thing at OU-Texas, so it was something I got caught up in. Yeah, it should’ve been something I did in the locker room. I apologize for doing it in the middle of the field.” But Mayfield doubled down on criticizing the people who supported him at OU. The people who let him get away with a one-series suspension for the West Virginia game, after the debacle at Kansas, instead of a one-game suspension that would have been the more effective discipline. “I had done so much and worked so hard to play for that school, I was just kinda ... almost embarrassed for them to tell me to apologize,” Mayfield said, according to GQ. That’s uncool. Throwing Riley and Joe C. under the bus, after both stood by Mayfield, shows a major immaturity streak in Mayfield. A really good followup question for Mayfield today is how heartfelt his apology was to Jones, the New York Giants rookie quarterback. Mayfield called Jones this week to say sorry for the things printed in GQ. “I cannot believe the Giants took Daniel Jones,” Mayfield said in the magazine. “Blows my mind … some people overthink it. That's where people go wrong. They forget you've gotta win. Either you have a history of winning and being that guy for your team or you don't.” Jones played at Duke, which had a 17-19 record with Jones at quarterback. Of course, 17-19 at Duke might be comparable to 34-6 at Oklahoma. John Elway had a losing record at Stanford. Perhaps in a self-survival move, Mayfield retreated quickly from his Jones comments, writing on Instagram that his words were taken out of context and claiming the media will do anything for internet clicks. Still, it’s hard to see how “blows my mind” could be taken out of context. It’s also ironic that Mayfield, who has begat a cottage industry of playing with a chip on his shoulder, would rip a quarterback who was not highly-acclaimed. Mayfield famously went to both Texas Tech and OU without so much as a scholarship. Mayfield has used that lack of belief by the football community – the great football state of Texas failed to recognize the talent that was right under its nose – as motivational fuel for years. And now here comes Mayfield, saying that his mind is blown because the Giants drafted Jones higher than the experts figured he would go. Quite disingenuous. It’s the second time Mayfield has run afoul of the New York football Giants. Mayfield ripped the Giant fan base after Cleveland acquired controversial receiver Odell Beckham Jr. Mayfield might be wary of frontier justice. The Browns and Giants play in 2020. NFL defenders have long memories. But the bigger issue is Mayfield’s leadership. We all admire players who aren't cardboard cutouts, players who actually say what’s on their mind instead of regurgitated comments that don’t mean anything. But Mayfield’s loose lips are not befitting an NFL quarterback leading a franchise. You can be frank without being provocative. Interesting without being incinerating. It’s time for Mayfield to grow up.
mayfield 12
2019-08-26T02:00:38.000Z
([0-9a-fA-F]{4})
hex4
2016-03-31T14:11:18.000Z
^CVE-(1999|2\d{3})-(0\d{2}[1-9]|[1-9]\d{3,})$
#This one is not valid but wasn't covered by the test cases provided by MITRE CVE-2001-0000 # This file contains test data for implementations to verify that # CVE IDs are properly parsed and handled to conform with the # 2014 CVE ID Syntax change. # # About this test data: README-tests.txt # More info: http://cve.mitre.org/cve/identifiers/syntaxchange.html # # ****** VALID SYNTAX ****** # # Publicly-referenced IDs for the new syntax (formerly "Option B") # CVE-2014-0001 CVE-2014-0999 CVE-2014-1234 CVE-2014-3127 CVE-2014-9999 CVE-2014-10000 CVE-2014-54321 CVE-2014-99999 CVE-2014-100000 CVE-2014-123456 CVE-2014-456132 CVE-2014-999999 CVE-2014-1000000 CVE-2014-1234567 CVE-2014-7654321 CVE-2014-9999999 # # Invalid ID. This is the only invalid ID in this file, and it's # intended to help spot incorrect tests that mistakenly accept all # inputs. See README. # CVE-ABCD-EFGH # # These are valid but could cause problems if IDs are stored in bytes # due to numeric overflows (stranger things have happened). # CVE-2014-16385 CVE-2014-32769 CVE-2014-65537 CVE-2014-131073 # # unusually large number of trailing zeros # CVE-2014-100000000 # # storing CVE number portion as 32-bit signed integer (seen in at # least one real-world implementation) # CVE-2014-2147483647 CVE-2014-2147483648 # # storing CVE number portion as 32-bit unsigned integer (possibly seen # in at least one real-world implementation) # CVE-2014-4294967295 CVE-2014-4294967296 # # storing CVE ID string in a fixed-length 32-byte buffer, with or # without a required trailing '\0' character # CVE-2014-1111111111111111111111 CVE-2014-11111111111111111111111 CVE-2014-111111111111111111111111 #################################################################### # This file contains test data for implementations to verify that # CVE IDs are properly parsed and handled to conform with the # 2014 CVE ID Syntax change. # # About this test data: README-tests.txt # More info: http://cve.mitre.org/cve/identifiers/syntaxchange.html # # # ****** SYNTAX VIOLATIONS ****** # # Option A syntax from early 2013 - option not chosen. These might look # good at first glance, but have leading 0's with more than 4 digits. # CVE-2014-000001 CVE-2014-009999 CVE-2014-000001 CVE-2014-000999 CVE-2014-001234 CVE-2014-009999 CVE-2014-010000 CVE-2014-054321 CVE-2014-099999 # # Option A' syntax - modified Option A for second vote - option not chosen. # Similar to original Option A, there are leading 0's with more than 4 digits. # CVE-2014-00000001 CVE-2014-00000999 CVE-2014-00001234 CVE-2014-00009999 CVE-2014-00010000 CVE-2014-00123456 CVE-2014-01234567 # # Option C syntax from early 2013 - option not chosen # CVE-2014-1-8 CVE-2014-999-3 CVE-2014-1234-3 CVE-2014-9999-3 CVE-2014-10000-8 CVE-2014-54321-5 CVE-2014-123456-5 CVE-2014-999999-5 CVE-2014-1234567-4 # # Intentionally valid ID. This is the only valid ID in this file, and # it's intended to help spot incorrect tests that mistakenly reject # all inputs. See README. # CVE-2014-1234 # # Miscellaneous examples used during discussion of syntax # CVE-YYYY-NNNN CVE-YYYY-NNNNN CVE-YYYY-NNNNNN # # Loose extraction assuming only CVE prefix and two alphanumerics # separated by hyphens # CVE-SRC-OHA CVE-2AAA-3BBB # # Missing sequence number / invalid year # CVE-114 CVE-73 # # Malformed sequence number # CVE-2014-789 CVE-2014- CVE-2014-9 CVE-2014-98 # # leading 0's - prohibited except for 999 and less (i.e., "0001" # through "0999" # CVE-2015-010000 CVE-2015-09999 CVE-2014-00001 # # CR/LF in middle of ID # CVE-2014- 1234 CVE-2014 -1234 CVE-201 4-1235 # # no year provided # CVE-3153 # # position-oriented (assume columns 5 through 8 are year). The first one # is a real-world conversion error by CVE code (oops). # CVE- 14-1236 CVE-AAAA-1237 # # missing/invalid "CVE-" prefix # C-2014-1238 2014-1240 CVE:2014-1241 CVE 2014 1242 # # invalid year # CVE-201-0771 CVE-14-1239 CVE-20132-0169 # # Odd stuff straight from CVE web logs (thanks, random anonymous # people!). Includes some real-world typos or, in some cases, # security-related IDs that utilize portions of the CVE ID. # 2013 0497 2010-270 2013-199 2013-6XXX CVE2014-0591 CVE:13-7108 CVE-XXXX-XXXX CVE-TODO 1421010/13 CVE20076753 CVE:2013-4547 (CVE-2013-136 CVE - 2006 - 0788 CVE-2008-600 199-0618 CVE-199-0618 CA-2003-16 # URL-encoded +CVE+-+2006+-+0788 CVE-2013%2D4345 CVE -20093103 CVE-'2014-1610 CVE--2009-3555 CVE-1999-077 CVE-2006.1737 CVE-20076-4704 CVE-2010--0281 CVE-2010- CVE-2013-* CVE-2013-167` CVE-2013-00XX CVE-2013--4339 CVE-2013-**** CVE-2013-3.893 CVE-CVE:2013-4883 CVE-CVE-2013-4883 CVE2010-3333.J 2013-A-0196 CVE-2013-A-0196 # # common shorthand for multiple IDs # CVE-2007-{4352,5392,5393} CVE:2012-0013 CVE_2013-7063 E-2011-3192 EXPLOIT-CVE2013-2465 VE-2012-0158 VE-2013-5875C ZDI-12-170 CVE-YYYY-XXXX CVE-2012=1234 # # these originated in late 1999/early 2000 era # GENERIC-MAP-NOMATCH CVE-MAP-NOMATCH CVE-NO-MATCH CVE-NO-NAME CVE-NONE-0662 # # Arbitrary 13-character string # ABCDEFGHIJKLM # # NOCVE identifiers, e.g., http://cs.coresecurity.com/core-impact-pro/exploits?page=11 # NOCVE-9999-54104 NOCVE-9999-46110 CVE-9999-1 CVE-9999-11 CVE-9999-111 # # erroneous attempts to convert certain homoglyphs / Unicode to 7-bit # ASCII CVE?2014?0001 # # mashups of CVEs and telephone numbers # CVE-555-1212 CVE-800-555-1212 CVE-1-800-555-1212 # # mashups of CVEs and Jenny # CVE-867-5309 CVE-867-5309(1981) # # extraneous spaces (very common in disclosures from multiple sources) # CVE-2014- 0001 CVE- 2014-0001 CVE- 2014- 0001 CVE-2014- 13001 CVE- 2014-13001 CVE- 2014- 13001 # # non-dash format (widely used by IBM ISS X-Force, e.g., the http://xforce.iss.net/xforce/xfdb/89235 page) # CVE20140001 cve20140001 CVE201413001 cve201413001 # # traditional VUPEN style - which happens to match CVE except for the # "ADV-" prefix instead of "CVE-" # ADV-2006-0001 # # exploit-db.com format # CVE: 2014-0001 CVE: 2014-13001 # # OSVDB format # CVE ID: 2014-0001 CVE ID: 2014-13001 2014-0001 2014-13001 # # results of bad global search/replace of CVE with CVE&reg; # (registered trademark symbol) # CVE&reg;-2014-0001 # # attempts at XML conversion # <CVE>-2014-0001 <CVE>2014-0001 <CVE>2014-0001</CVE> <CVE>2014-0001</> # # attempts at JSON conversion # "CVE": "2014-0001" "cve": "2004-0001" "CVE":"2014-0001" "cve":"2004-0001" # # use of the letter 'O' instead of the number '0' # CVE-2014-OOO1 CVE-2O14-0001 # # use of the letter 'l' instead of the number '1' # CVE-2014-000l CVE-20l4-0001 # # regular expressions or various other groupings # CVE-2014-130[12] CVE-[0-9]{4}-[0-9]{4} CVE-[0-9]{4,}-[0-9]{4,} # "sticky" keyboards # CVEE-2014-0001 CVEEEEEEE-2014-0001 # attempts at plurals # CVEs-2014-0001 and 2014-0002 # misplaced organizational specifiers # CVE[MITRE]-2014-0001 CVE[Mitre]-2014-0001 # confusion with National Vulnerability Database # NVD-2014-0001 # confusion with Defense Vulnerability Database # DVD-2014-0001 # confusion with other organizations # CERT-2014-0001 JVN-2014-0001 JVNDB-2014-000001 # intraword footnotes # CVE[1]-2014-0001 CVE*-2014-0001 CVE**-2014-0001 # Literal tab character. # CVE 2014-0001 # erroneous generation of a -1 value # CVE-2014--1 # erroneous generation of a zero value # CVE-2014-0 # ordering confusion # 2014-0001-CVE # this is technically valid syntax, but since the year can never be before # 1999, this could be rejected based on CVE "business rules". CVE-0001-2014 # wildcards or meta-expressions # CVE-2014-* CVE-2014-#### CVE-2014-**** CVE-2014-? CVE-2014-???? CVE-2014* CVE-2014? # extraneous dashes # CVE-2014--0001 CVE--2014-0001 # typos of dash # CVE=2014=0001 CVE0201400001 # various uncategorized examples # CVE_2014_0001 CVE-ID-2014-0001 CVEID-2014-0001 CVE#2014-0001 CVE# 2014-0001 CVEID#2014-0001 CVEID# 2014-0001 CVE-ID#2014-0001 CVE-ID# 2014-0001 CVE#2014-0001 CVE# 2014-0001 CEV-2014-0001 VCE-2014-0001 VEC-2014-0001 CWE-2014-0001 CPE-2014-0001 CME-2014-0001 CE-2014-0001 VE-2014-0001 E-2014-0001 -2014-0001 CVE-2014-000{1,2} CVE/MITRE-2014-0001
CVE descriptors
2015-06-11T16:34:55.000Z
#day tralalala #"day" tralalala #'beautiful_day'
#([^\"|'][\S]+)|#[\"]{1}([^"]+)[\"]{1}|#[\']{1}([^']+)[\']{1}
твоя #погода1 какая прекрасная #погода1 или же нет #"хорошей погоды" завтра #погода1 как всегда #хорошей погоды и с помощью #'золотого дня' сегодня
tags, tags in quotes
2013-12-24T17:04:13.000Z
Validates DateTime of format YYYYMMDDhhmmss including Leap Year
(^(((\d\d)(([02468][048])|([13579][26]))0229)|(((\d\d)(\d\d)))((((0[1-9])|(1[0-2]))((0[1-9])|(1\d)|(2[0-8])))|((((0[13578])|(1[02]))31)|(((0[1,3-9])|(1[0-2]))(29|30)))))(([01]\d|2[0-3])([0-5]\d)([0-5]\d))$)
19741206131415
DateTime YYYYMMDDhhmmss (with leap year)
2015-12-22T23:31:41.000Z
(?i)^([0-9-]+)T([0-9:]+)-([0-9:]+) ([a-z0-9]+) ([a-z0-9]+)\[([0-9]+)\]: client ([0-9a-f.:]+)#([0-9]+) \((.*?)\): query: (.*?) ([a-z]+) ([a-z0-9]+) ([-+])([a-z]+)* \((.*?)\)
2017-11-30T06:25:53-07:00 epperson1 named[8294]: client 66.249.66.83#38327 (utahdwr.groups.et.byu.net): query: utahdwr.groups.et.byu.net IN A - (128.187.223.235) 2017-11-30T06:25:52-07:00 epperson1 named[8294]: client 208.67.217.73#44043 (18.21.187.128.in-addr.arpa): query: 18.21.187.128.in-addr.arpa IN PTR -E (128.187.223.235) 2017-11-30T06:25:52-07:00 epperson1 named[8294]: client 208.67.217.73#44043 (18.21.187.128.in-addr.arpa): query: 18.21.187.128.in-addr.arpa IN PTR -E (128.187.223.235) 2017-11-30T06:26:09-07:00 epperson1 named[8294]: client 76.96.15.65#9272 (db._dns-sd._udp.byu.edu): query: db._dns-sd._udp.byu.edu IN PTR -ED (128.187.223.235) 2017-11-30T06:26:23-07:00 epperson1 named[8294]: client 10.2.119.109#60848 (www.mers.byu.edu): query: www.mers.byu.edu IN A + (128.187.223.235) 2017-11-30T06:26:59-07:00 epperson1 named[8294]: client 128.187.56.171#19775 (LAB.MERS.BYU.EDU\032MERS.BYU.EDU): query: LAB.MERS.BYU.EDU\032MERS.BYU.EDU IN SOA -EDC (128.187.223.235) 2017-11-30T06:41:52-07:00 epperson1 named[8294]: client 209.88.21.70#53 (edns1.byu.edu): query: edns1.byu.edu IN A6 -E (128.187.223.235) 2017-11-30T07:16:59-07:00 hendry1 named[16431]: client 74.125.186.65#61690 (*.byu.edu): query: *.byu.edu IN A -ED (128.187.223.243) 2017-11-30T09:11:02-07:00 epperson1 named[8294]: client 69.252.200.1#45456 (%24refferer.app.byu.edu): query: %24refferer.app.byu.edu IN A -ED (128.187.223.235) 2017-11-30T10:13:27-07:00 hendry1 named[16431]: client 135.19.0.19#2470 (gw13.byu.edu,gw9.byu.edu,gw12.byu.edu,gw10.byu.edu,gw11.byu.edu): query: gw13.byu.edu,gw9.byu.edu,gw12.byu.edu,gw10.byu.edu,gw11.byu.edu IN A -ED (128.187.223.243) 2019-01-08T06:27:18-07:00 epperson1 named[10227]: client 2620:8b:c000:4:198:97:62:197#9237 (20.112.187.128.in-addr.arpa): query: 20.112.187.128.in-addr.arpa IN PTR -EDC (2620:10f:3007:fb04::eb) 2019-01-08T06:27:18-07:00 epperson1 named[10227]: client completejiberish#9237 (20.112.187.128.in-addr.arpa): query: 20.112.187.128.in-addr.arpa IN PTR -EDC (completejibbersh)
query.log
2019-01-15T14:58:26.000Z
line-height: (.*)em;
line-height: 1.5em;
Select line-height in em
2018-07-12T01:05:10.000Z
Detects Kenyan Phonenumbers
^(?:(?:\+|0{0,2})254(\s*[\-]\s*)?|[0]?)?[7]\d{8}$
Kenyan phonenumber Regex
2017-09-21T02:53:58.000Z
(@Column *\( *name *= *"(.+?)".+)
@Column(name = "UTL_DA_PRTCPZN_IC", table = "ALL_PRQZN_SEZ_PRNCPL") private Importo utiliDaPartecipazioneIC; @Column(name = "UTL_DA_PRTCPZN_IFD", table = "ALL_PRQZN_SEZ_PRNCPL") private Importo utiliDaPartecipazioneIFD; @Column(name = "PRQZN_RDZN_PRTCPZN_UTL_ALQ_IC", table = "ALL_PRQZN_SEZ_PRNCPL") private Aliquota riduzionePartecipazioniAliquotaIC;
BeanStruct from columns
2020-08-18T09:42:09.000Z
format (xxx) xxx-xxxx reg- /^\(\d{3}\) \d{3}-\d{4}$/
^\(\d{3}\) \d{3}-\d{4}$
(341) 324-1233
business phone number
2015-12-28T12:23:32.000Z
This regular expression allows you to test strings to see if they are youtube video links.
^https:\/\/(youtu\.be\/[A-Za-z0-9]{11}|www\.youtube\.com\/watch\?v=[A-Za-z0-9]{11})$
Youtube video link regular expression
2021-06-18T10:21:35.000Z
(?<=Rx\s)([0-f0-9]+)\s([0-f0-9]+\s)+
0.010011 1 AC Rx d 8 A0 AF 82 82 83 86 7F 00\n
Selecting an array of bytes in a long string
2015-08-27T07:05:13.000Z
(deficient)(\s.*?\s)(exhibited)(\s.*?\s)(gmk)
deficient dhte wagdg sdfs exhibited vlskdv gmk
deficient exhibited gmk
2016-01-13T09:57:05.000Z
(.*?)","|(.*?)$
<p>Calçat per a bebè nen. Vambes altes de denim. Fàcils de posar gràcies als cordons elàstics. Collet enconxat de cotó per a més comoditat. Ullets metàl·lics. Part de sobre de denim de cotó i collet de poliuretà. Folre i plantilla de cotó.<\p><p>Plantilla: 100% cotó<br \><p>Sola exterior: 100% cotó<br \>Folre: 100% cotó<br \>Part de sobre: 65% cotó, 35% poliuretà<\p>","Baby-Schuhe Jungen. Knöchelhohe Sneaker mit elastischen Schnürsenkeln. Leicht anzulegen. Gesteppter Schaftkragen für mehr Komfort. Metallösen. Außenseite aus Baumwolldenim und Polyurethan, innen Baumwolle.","Baby-Schuhe Jungen. Knöchelhohe Sneaker mit elastischen Schnürsenkeln. Leicht anzulegen. Gesteppter Schaftkragen für mehr Komfort. Metallösen. Außenseite aus Baumwolldenim und Polyurethan, innen Baumwolle.","Shoes for baby boys. High-top sneakers with elasticated laces. Easy dressing. Quilted collar for comfort. Metal eyelets. Exterior in cotton denim and polyurethane and cotton interior.","<p>Zapatos para bebé niño. Deportivas altas de tela vaquera. Fáciles de poner gracias a los cordones elásticos. Cuello acolchado para mayor comodidad. Ojales de metal. Parte superior vaquera de algodón de poliuretano. Suela interior y forro de algodón.<\p><p>Suela interior: 100 % algodón<br \>Suela exterior: 100 % algodón<br \>Forro: 100 % algodón <br \>Parte superior: 65 % de algodón, 35 % de poliuretano<\p>","<p>Chaussure bébé garçon. Baskets montantes en denim. Enfilage facile grâce aux lacets élastiqués. Col matelassé pour le confort. Œillets métal. Dessus en denim coton et col en polyurethane. Semelle intérieure et doublure en coton.<\p><p>Semelle intérieure : 100% Coton<br \>Semelle extérieure : 100% Coton<br \>Doublure : 100% Coton<br \>Dessus : 65% Coton, 35% Polyuréthane<\p>","Chaussures pour bébé garçon. Chaussures de sport montantes à lacets élastiqués. Enfilage facile. Col matelassé pour le confort. Œillets en métal. Extérieur en denim de coton et polyuréthane et intérieur en coton.","<p>Chaussure bébé garçon. Baskets montantes en denim. Enfilage facile grâce aux lacets élastiqués. Col matelassé pour le confort. Œillets métal. Dessus en denim coton et col en polyurethane. Semelle intérieure et doublure en coton.<\p><p>Semelle intérieure : 100% Coton<br \>Semelle extérieure : 100% Coton<br \>Doublure : 100% Coton<br \>Dessus : 65% Coton, 35% Polyuréthane<\p>","<p>Chaussure bébé garçon. Baskets montantes en denim. Enfilage facile grâce aux lacets élastiqués. Col matelassé pour le confort. Œillets métal. Dessus en denim coton et col en polyurethane. Semelle intérieure et doublure en coton.<\p><p>Semelle intérieure : 100% Coton<br \>Semelle extérieure : 100% Coton<br \>Doublure : 100% Coton<br \>Dessus : 65% Coton, 35% Polyuréthane<\p>","Scarpe per bimbo. Basket alte con lacci elasticizzati. Si infilano facilmente. Collo imbottito per il massimo comfort. Occhielli in metallo. Esterno in denim di cotone e poliuretano e interno in cotone.","<p>Schoenen baby jongen. Hoge baskets van denim. Makkelijk aan te trekken dankzij de elastische veters. Gewatteerde kraag voor het comfort. Metalen oogjes. Bovenkant van denim en katoen en kraag van polyurethaan. Binnenzool en voering van katoen.<\p><p>Binnenzool: 100% katoen<br \>Buitenzool: 100% katoen<br \>Voering: 100% katoen<br \>Bovenkant: 65% katoen, 35% polyurethaan<\p>","<p>Buty niemowleca dla chlopca. Trampki za kostke z denimu. Latwe do zakladania dzieki elastycznym sznurówkom. Wzmocniony material wokól kostki dla wiekszego komfortu. Metalowe oczka. Wierzch z bawelnianego denimu, góra buta z poliuretanu. Wysciólka i wkladka z bawelny.<\p><p>Wkladka: 90% bawelna<br\>Podeszwa: 100% bawelna <br \>Wysciólka: 100% bawelny<br \>Wierzch: 65% bawelnia, 35% poliuretan<\p>
PIM v4
2020-08-25T15:05:18.000Z
^(?:([\w]*)(?: (.*))? )?([\w]+)$
Thinh Nguyen Thinh Nguyen Ngoc Thinh Nguyen A B C Thinh
Split full name to last, middle, last
2019-06-12T09:54:21.000Z
;(?<VCX_NODE>\w{3,4}#\d)\s*\w\s\d\s\d\s\w{3}\s-\s(?<mfctrunk>.*)\/(?<mfcline>.*)\((?<mfclineslot>\d{1,3})\)
VCX_Stat;30.09.2018 22:58:37;S;LNZ#1 V 1 0 LNZ - VIE___2MBit__/lnzvie1201(8):656825-&gt663625 Voc
vcx trunk TEIL
2018-10-16T08:02:36.000Z
Matches multiline entries (e.g. those containing exception stack traces or just multiline values) in a PHP error log produced by `error_log()`.
^\[([\d]{1,2}-[\w]{3,9}-[\d]{4}\s+[\d]{2}:[\d]{2}:[\d]{2}\s+[A-Z]{3,4})\]\s((?s).+?)(?=(?:^\[.+\])|\Z)
[27-May-2021 05:59:39 UTC] Inpsyde\Idealo\WooCommerce\IdealoException: Plugin "woocommerce" must be installed and active in C:\Users\xedin\Local Sites\idealo\app\public\wp-content\plugins\idealo-for-woocommerce\src\Application.php:172 [27-May-2021 05:59:39 UTC] PHP Fatal error: Uncaught Error: Class 'ActionScheduler_Lock' not found in C:\Users\xedin\Local Sites\idealo\app\public\wp-content\plugins\idealo-for-woocommerce\vendor\woocommerce\action-scheduler\classes\abstracts\ActionScheduler.php:29 Stack trace: #0 C:\Users\xedin\Local Sites\idealo\app\public\wp-content\plugins\idealo-for-woocommerce\vendor\woocommerce\action-scheduler\classes\ActionScheduler_QueueRunner.php(103): ActionScheduler::lock() #1 C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\class-wp-hook.php(292): ActionScheduler_QueueRunner->maybe_dispatch_async_request('') #2 C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\class-wp-hook.php(316): WP_Hook->apply_filters(NULL, Array) #3 C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\plugin.php(484): WP_Hook->do_action(Array) #4 C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\load.php(1072): do_action('shutdown') #5 [internal function]: shutdown_action_hook() #6 {main} thrown in C:\Users\xedin\Local Sites\idealo\app\public\wp-content\plugins\idealo-for-woocommerce\vendor\woocommerce\action-scheduler\classes\abstracts\ActionScheduler.php on line 29 [27-May-2021 05:59:39 UTC] PHP Stack trace: [27-May-2021 05:59:39 UTC] PHP 1. {main}() C:\Users\xedin\Local Sites\idealo\app\public\wp-admin\admin-ajax.php:0 [27-May-2021 05:59:39 UTC] PHP 2. do_action() C:\Users\xedin\Local Sites\idealo\app\public\wp-admin\admin-ajax.php:187 [27-May-2021 05:59:39 UTC] PHP 3. WP_Hook->do_action() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\plugin.php:484 [27-May-2021 05:59:39 UTC] PHP 4. WP_Hook->apply_filters() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\class-wp-hook.php:316 [27-May-2021 05:59:39 UTC] PHP 5. wp_ajax_delete_plugin() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\class-wp-hook.php:292 [27-May-2021 05:59:39 UTC] PHP 6. wp_send_json_success() C:\Users\xedin\Local Sites\idealo\app\public\wp-admin\includes\ajax-actions.php:4591 [27-May-2021 05:59:39 UTC] PHP 7. wp_send_json() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\functions.php:4151 [27-May-2021 05:59:39 UTC] PHP 8. wp_die() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\functions.php:4125 [27-May-2021 05:59:39 UTC] PHP 9. _ajax_wp_die_handler() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\functions.php:3421 [27-May-2021 06:56:26 UTC] PHP Warning: mysqli_real_connect(): (HY000/2002): No connection could be made because the target machine actively refused it. in C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\wp-db.php on line 1653 [27-May-2021 06:56:27 UTC] PHP Stack trace: [27-May-2021 06:56:27 UTC] PHP 1. {main}() C:\Users\xedin\Local Sites\idealo\app\public\wp-cron.php:0 [27-May-2021 06:56:27 UTC] PHP 2. require_once() C:\Users\xedin\Local Sites\idealo\app\public\wp-cron.php:44 [27-May-2021 06:56:27 UTC] PHP 3. require_once() C:\Users\xedin\Local Sites\idealo\app\public\wp-load.php:37 [27-May-2021 06:56:27 UTC] PHP 4. require_once() C:\Users\xedin\Local Sites\idealo\app\public\wp-config.php:80 [27-May-2021 06:56:27 UTC] PHP 5. require_wp_db() C:\Users\xedin\Local Sites\idealo\app\public\wp-settings.php:124 [27-May-2021 06:56:27 UTC] PHP 6. wpdb->__construct() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\load.php:545 [27-May-2021 06:56:27 UTC] PHP 7. wpdb->db_connect() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\wp-db.php:632 [27-May-2021 06:56:27 UTC] PHP 8. mysqli_real_connect() C:\Users\xedin\Local Sites\idealo\app\public\wp-includes\wp-db.php:1653
PHP Multiline Error Log
2021-05-27T11:58:00.000Z
\s*(i\s*sotype control)|(Dilution Buffer)|\s+(anti-)|^(InVivo\w*\s*(?:polyclonal|recombinant)\s*.*(?:sFlts|CTLA|IgG))|(?:\s*)(IgG\s*.*fragments)$|(InVivoPlus mouse CTLA-4 \(CD152\))
Enhanced Chemiluminescent Reagent Kit (Anti-Mouse IgG) Enhanced Chemiluminescent Reagent Kit (Anti-Rabbit IgG) Enhanced Chemiluminescent Reagent Kit (Anti-Goat IgG) Enhanced Chemiluminescent Reagent Kit (Anti-Rat IgG) Enhanced Chemiluminescent Reagent Kit (Anti-Mouse IgM) Western Blotting Mouse IgG DAB Chromogenic Reagent Kit (Yellow) Western Blotting Goat IgG DAB Chromogenic Reagent Kit (Yellow)
BioXCell Me.Type
2018-12-23T19:47:11.000Z
.?(\*\!)(\w*){1,}
*!adsfasdf * !adsfasdf * *! *! * asfsadf *asdfsadf
Alles nach *! finden
2020-09-07T06:21:19.000Z
(\s|^)[\u0400-\u04FF]{2,5}(\s|[.,])
1. Я проходил службу вв мвд. в ханкале с 2002 по 2003 год, 19 дней мне закрыли боевых, в воеенике все записи есть, получил удостоверение ветерана боевых действий. После потере удостоверения я обратился в мвд архив по месту жительства и полученя удостоверения, мне сказали что мы отправим запрос в Москву главный архив и они примут решение выдавать мне удостоверение или нет, говорят многим было отказано. Вопрос получу я или нет? 1.1. Вы получаете не удостоверение а дубликат, и здесь технический вопрос а не вопрос принятия решения. 2. Как мне найти справку о 1)смерти или 2) хотя бы рождении моего прадеда, если я знаю о нем только ФИО и все, не знаю где умер и жил последние годы жизни. Данная справка мне нужна для принятия наследства в судебном порядке. Делала запрос на розыск человека в МВД, ЗАГС, архив своего города- но данных на такого человека у них нет. 2.1. Анастасия Добрый день. На какое имущество Вы хотите вступить в наследство после смерти прадеда. 3. Пишу сразу на звонки не разводить.
Аббревиатуры
2019-08-01T11:27:10.000Z
Get the extension of file
.*\.(\w{3,})$
http://www.w3schools.com/jsref/jsref_regexp_exec.asp https://translate.google.com/#en/pt/Thank%20you%20Engr!%20That%20is%20awesome.php www.facebook.com/index.asp
Get the extension of file
2015-04-08T22:20:46.000Z
get video id from any version of youtube url
(?:youtube(?:-nocookie)?\.com\/(?:[^\/\n\s]+\/\S+\/|(?:v|e(?:mbed)?)\/|\S*?[?&]v=)|youtu\.be\/)([a-zA-Z0-9_-]{11})
<iframe src="https://www.youtube.com/embed/B2j51s2Zte4" width="580" height="418" frameborder="0" allowfullscreen="allowfullscreen"></iframe> https://www.youtube.com/embed/B2j51s2Zte4 https://www.youtu.be/B2j51s2Zte4 http://youtube.com/v/B2j51s2Zte4 http://youtube.com/?v=B2j51s2Zte4 //youtube.com/watch?v=B2j51s2Zte4 youtu.be/B2j51s2Zte4
Capture YouTube Video ID
2015-08-25T20:38:20.000Z
^(?=.{5,15}$)(?![_.-])(?!.*[_.-]{2})[a-zA-Z0-9._-]+$
username validation
2016-01-26T15:41:12.000Z
On comment in http://requestly.in/documentation/replace-rule/
(.+)subfolder(.+)id=(.+)
https://www.myserver.com/folder/subfolder/Profile.aspx?id=123456
John Eggen Query
2016-08-31T05:09:20.000Z
[\p{Sc}\p{So}\p{Mn}\p{P}\p{Z}À-ÿ]
[\p{Sc}\p{So}\p{Mn}\p{P}\p{Z}À-ÿ]
QWERTYUIOPéAsdfghjklHFIUSAF /*-+!"£$%&/()?=^*é§°ç_:;[]#@€£█Õ○3═nêj⌂8±£#♫♣èùàò
[\p{Sc}\p{So}\p{Mn}\p{P}\p{Z}À-ÿ]
2023-01-02T09:53:10.000Z
^(1[0-2]|0[1-9]|\d)\/([2-9]\d[1-9]\d|[0-9]\d)$
12/99
mm/yy
2015-09-21T08:24:46.000Z
Original title: (.*)
Conversation opened. 1 read message. Skip to content Using Animateka Mail with screen readers [email protected] Search Click here to enable desktop notifications for Animateka Mail. Learn more Hide Mail COMPOSE Labels Inbox Starred Sent Mail Katja Smail Submissions More More 21 of 22 Print all In new window Prijavnica Inbox x [email protected] Jul 6 (3 days ago) to misak I apply with my film to the following competition programme:: CENTRAL AND EASTERN EUROPEAN COMPETITION SHORT ANIMATED FILMS Original title: Menagerie English title: Menagerie Running time: 03:28 Animation Technique: pencil and pen on paper Screening format: HD file Production year: 2014 Country: Canada Suitable for children: 0 Age group: 3 Original language: english / no dialogue Subtitles: no dialogue Producer: Vancouver Film School Distributer: Julian Gallese Director: Julian Gallese Name: Julian Gallese Script: Julian Gallese Address: 320 abbott street Design: Julian Gallese City: Vancouver Animation: Julian Gallese ZIP: V6B 2K9 Editing: Rob Wood Country: Canada Music: Lee Hutzulak Phone: 7788295169 Sound: Julian Gallese Email: [email protected] SHORT SYNOPSIS: A bird in the water is dreaming about a forest, an ocean liner and himself. Then the tide drifts him to a strange shore. SHORT BIOGRAPHY AND FILMOGRAPHY OF THE DIRECTOR: Julian is an artist born in 1992. The unknown is his recurrent theme. His work is a constant exploration of the subconscious. His drawings and storytelling brings up the absurd, in an approach that honours irrationality over technique. filmography: menagerie (2014), untitled (2014) Previous festival screenings and awards: - Escala humana, Des Pacio art gallery - Spike & Mike's festival of Animation - Athens Animfest '15 - Dum-D Student Animation Festival - Future Film Festival, Italy - Fest Anča International Animation Festival, Slovakia Selection preview copy of the film: 1 Online film submission: 1 Link: https://vimeo.com/115080765 I, the undersigned, acknowledge and agree:: 1, 1 By checking the option(s) bellow, I agree:: 1, 2, 3 I have read:: 1 --- http://www.animateka.si/2015/tl_files/upload/stillframe_lq.jpg http://www.animateka.si/2015/tl_files/upload/screenshot3.jpg http://www.animateka.si/2015/tl_files/upload/julian-6.jpg Click here to Reply, Reply to all, or Forward 0.08 GB (0%) of 15 GB used Manage Program Policies Powered by Google Last account activity: 27 minutes ago Details
a
2015-07-09T19:15:20.000Z
If you have a sentence in a log file like "2 of 4 pictures converted successfully" and you need to know the numbers you can use this regex and use the group variable.
([1-9]+) of ([0-9]+)
5 of 10 pictures converted.
Get Numbers from an x of z sentence
2016-08-19T10:15:31.000Z
(https?:\/\/)?([\da-z\.-]+)(\.[a-z\.]{2,6})([\/\w \.-]*)
<table style="width:90%"><tr ><td width="16%"><a href="https://treasury8.aspac.citigroup.net/APCB/cust_cashplus_rates_IPBSG.jsp" target="_blank"><img alt="" src="images/FCYtimedeposit_button.JPG" width="53px" border="0"/></a></td> <td width="34%" align="left"><a href="https://treasury8.aspac.citigroup.net/APCB/cust_cashplus_rates_IPBSG.jsp" target="_blank" > <strong>FCY TD Customer Rates</strong></a></td> <td width="16%"><a href="https://knowledgemanagement.apac.nsroot.net/sites/gcg/intra2/rates/Lists/Rates%20and%20Commentaries/LTD%20Preference%20Rates.aspx" target="_blank"><img alt="" src="images/SGDtimedeposit_button.JPG" width="53px" border="0"/></a></td> <td width="34%" align="left"><a href="https://knowledgemanagement.apac.nsroot.net/sites/gcg/intra2/rates/Lists/Rates%20and%20Commentaries/LTD%20Preference%20Rates.aspx" target="_blank" > <strong>SGD TD Customer Rates</strong></a></td> </tr> <tr ><td width="16%"><a href="https://treasury8.aspac.citigroup.net/APCB/treasury_interest_rates.jsp" target="_blank"><img alt="" src="images/FCYinterbranch_button.JPG" width="53px" border="0"/></a></td> <td width="34%" align="left"><a href="https://treasury8.aspac.citigroup.net/APCB/treasury_interest_rates.jsp" target="_blank" > <strong>FCY Inter-branch Rates</strong></a></td> <td width="16%"><a href="../../USR23/InvestFinance/BenchmarkRates/Benchmark%20Rates.doc" target="_blank"><img alt="" src="images/USDprimerate_button.JPG" width="53px" border="0"/></a></td> <td width="34%" align="left"><a href="../../USR23/InvestFinance/BenchmarkRates/Benchmark%20Rates.doc" target="_blank" > <strong>US$ Prime Rate</strong></a></td> </tr> <tr ><td width="16%"><a href="https://knowledgemanagement.apac.nsroot.net/sites/gcg/Intra2/rates/Lists/Rates%20and%20Commentaries/SGD%20Interbank%20Rates.aspx" target="_blank"><img alt="" src="images/SGDinterbank_button.JPG" width="53px" border="0"/></a></td> <td width="34%" align="left"><a href="https://knowledgemanagement.apac.nsroot.net/sites/gcg/Intra2/rates/Lists/Rates%20and%20Commentaries/SGD%20Interbank%20Rates.aspx" target="_blank" > <strong>SGD Inter-Bank Rates</strong></a></td> <td width="16%"><a href="https://treasury8.aspac.citigroup.net/APCB/Customer_FX_Rates_SG.jsp" target="_blank"><img alt="" src="images/APCBfxcounterrates_button.JPG" width="53px" border="0"/></a></td> <td width="34%" align="left"><a href="https://treasury8.aspac.citigroup.net/APCB/Customer_FX_Rates_SG.jsp" target="_blank" > <strong>APCB FX Counter Rates</strong></a></td> </tr> </table>
URL matching
2015-07-27T02:35:08.000Z
([^\[\]]+)|\[([^\[\]]*)\]
lll[bbb][]
input name parse variant 2
2016-02-28T21:11:17.000Z
^(\w* \w*)_(\d{8})_(NOZ\d{7})_(\d{2}.\d{2}.\d{4})
Hans Wurst_12345678_NOZ1234567_24.04.2018
Betreffzeile auflösen
2018-04-24T10:22:06.000Z
<!--+.*?-+>
<!--------- hi--><!--e--><!-- e: atangana --><div>a</div><!------------------------------------>
Match HTML comments
2017-05-17T20:18:57.000Z
<Entry>((?!<\/Entry>).)*<\/Entry>
<Entry> <Type>Unknown</Type> <DateTime>11/28/2017 11:19:49.652</DateTime> <Level>Exception</Level> <Host>CNTX-PROD-WEB-A</Host> <ThreadID>139</ThreadID> <Request.URL>https://bonnier.magazine-services.net:44314/CS/Account.aspx?accountid=3622083</Request.URL> <Comment>Subscript =3420512 - Has an invalid state. The publication is ceased, but the subscription is not canceled.</Comment> <ExceptionMessage>Issue with subscription: 3420512</ExceptionMessage> </Entry> <Entry> <Type>Unknown</Type> <DateTime>11/28/2017 11:19:49.652</DateTime> <Level>Exception</Level> <Host>CNTX-PROD-WEB-A</Host> <ThreadID>139</ThreadID> <Request.URL>https://bonnier.magazine-services.net:44314/CS/Account.aspx?accountid=3622083</Request.URL> <Comment>Subscript =3420512 - Has an invalid state. The publication is ceased, but the subscription is not canceled.</Comment> <ExceptionMessage>Issue with subscription: 3420512</ExceptionMessage> </Entry> <Entry> <Type>Unknown</Type> <DateTime>11/28/2017 11:19:49.652</DateTime> <Level>Exception</Level> <Host>CNTX-PROD-WEB-A</Host> <ThreadID>139</ThreadID> <Request.URL>https://bonnier.magazine-services.net:44314/CS/Account.aspx?accountid=3622083</Request.URL> <Comment>Subscript =3420512 - Has an invalid state. The publication is ceased, but the subscription is not canceled.</Comment> <ExceptionMessage>Issue with subscription: 3420512</ExceptionMessage> </Entry>
Negative Lookahead
2017-11-28T17:20:26.000Z
(?:(?<=^)|(?<=\D))((00|\+)?55(\s|\.|-)*)?((\()?0?\d{2}(?(5)\)|)(\s|\.|-)*)?(9(\s|\.|-)*)?\d{4}(\s|\.|-)*\d{4}(?=\D|$)
98993132 9899-3132 9899.3132 9899 3132 7198993132 719899-3132 719899.3132 719899 3132 71 98993132 71 9899-3132 71 9899.3132 71 9899 3132 071 98993132 071 9899-3132 071 9899.3132 071 9899 3132 (71)98993132 (71)9899-3132 (71)9899.3132 (71)9899 3132 (71) 98993132 (71) 9899-3132 (71) 9899.3132 (071) 9899 3132 (071) 98993132 (071) 9899-3132 (071) 9899.3132 (071) 9899 3132 557198993132 55719899-3132 55719899.3132 55719899 3132 5571 98993132 5571 9899-3132 5571 9899.3132 5571 9899 3132 55071 98993132 55071 9899-3132 55071 9899.3132 55071 9899 3132 55(71)98993132 55(71)9899-3132 55(71)9899.3132 55(71)9899 3132 55(71) 98993132 55(71) 9899-3132 55(71) 9899.3132 55(071) 9899 3132 55(071) 98993132 55(071) 9899-3132 55(071) 9899.3132 55(071) 9899 3132 55 7198993132 55 719899-3132 55 719899.3132 55 719899 3132 55 71 98993132 55 71 9899-3132 55 71 9899.3132 55 71 9899 3132 55 071 98993132 55 071 9899-3132 55 071 9899.3132 55 071 9899 3132 55 (71)98993132 55 (71)9899-3132 55 (71)9899.3132 55 (71)9899 3132 55 (71) 98993132 55 (71) 9899-3132 55 (71) 9899.3132 55 (071) 9899 3132 55 (071) 98993132 55 (071) 9899-3132 55 (071) 9899.3132 55 (071) 9899 3132 +557198993132 +55719899-3132 +55719899.3132 +55719899 3132 +5571 98993132 +5571 9899-3132 +5571 9899.3132 +5571 9899 3132 +55071 98993132 +55071 9899-3132 +55071 9899.3132 +55071 9899 3132 +55(71)98993132 +55(71)9899-3132 +55(71)9899.3132 +55(71)9899 3132 +55(71) 98993132 +55(71) 9899-3132 +55(71) 9899.3132 +55(071) 9899 3132 +55(071) 98993132 +55(071) 9899-3132 +55(071) 9899.3132 +55(071) 9899 3132 +55 7198993132 +55 719899-3132 +55 719899.3132 +55 719899 3132 +55 71 98993132 +55 71 9899-3132 +55 71 9899.3132 +55 71 9899 3132 +55 071 98993132 +55 071 9899-3132 +55 071 9899.3132 +55 071 9899 3132 +55 (71)98993132 +55 (71)9899-3132 +55 (71)9899.3132 +55 (71)9899 3132 +55 (71) 98993132 +55 (71) 9899-3132 +55 (71) 9899.3132 +55 (071) 9899 3132 +55 (071) 98993132 +55 (071) 9899-3132 +55 (071) 9899.3132 +55 (071) 9899 3132 998993132 99899-3132 99899.3132 99899 3132 71998993132 7199899-3132 7199899.3132 7199899 3132 71 998993132 71 99899-3132 71 99899.3132 71 99899 3132 071 998993132 071 99899-3132 071 99899.3132 071 99899 3132 (71)998993132 (71)99899-3132 (71)99899.3132 (71)99899 3132 (71) 998993132 (71) 99899-3132 (71) 99899.3132 (071) 99899 3132 (071) 998993132 (071) 99899-3132 (071) 99899.3132 (071) 99899 3132 5571998993132 557199899-3132 557199899.3132 557199899 3132 5571 998993132 5571 99899-3132 5571 99899.3132 5571 99899 3132 55071 998993132 55071 99899-3132 55071 99899.3132 55071 99899 3132 55(71)998993132 55(71)99899-3132 55(71)99899.3132 55(71)99899 3132 55(71) 998993132 55(71) 99899-3132 55(71) 99899.3132 55(071) 99899 3132 55(071) 998993132 55(071) 99899-3132 55(071) 99899.3132 55(071) 99899 3132 55 71998993132 55 7199899-3132 55 7199899.3132 55 7199899 3132 55 71 998993132 55 71 99899-3132 55 71 99899.3132 55 71 99899 3132 55 071 998993132 55 071 99899-3132 55 071 99899.3132 55 071 99899 3132 55 (71)998993132 55 (71)99899-3132 55 (71)99899.3132 55 (71)99899 3132 55 (71) 998993132 55 (71) 99899-3132 55 (71) 99899.3132 55 (071) 99899 3132 55 (071) 998993132 55 (071) 99899-3132 55 (071) 99899.3132 55 (071) 99899 3132 +5571998993132 +557199899-3132 +557199899.3132 +557199899 3132 +5571 998993132 +5571 99899-3132 +5571 99899.3132 +5571 99899 3132 +55071 998993132 +55071 99899-3132 +55071 99899.3132 +55071 99899 3132 +55(71)998993132 +55(71)99899-3132 +55(71)99899.3132 +55(71)99899 3132 +55(71) 998993132 +55(71) 99899-3132 +55(71) 99899.3132 +55(071) 99899 3132 +55(071) 998993132 +55(071) 99899-3132 +55(071) 99899.3132 +55(071) 99899 3132 +55 71998993132 +55 7199899-3132 +55 7199899.3132 +55 7199899 3132 +55 71 998993132 +55 71 99899-3132 +55 71 99899.3132 +55 71 99899 3132 +55 071 998993132 +55 071 99899-3132 +55 071 99899.3132 +55 071 99899 3132 +55 (71)998993132 +55 (71)99899-3132 +55 (71)99899.3132 +55 (71)99899 3132 +55 (71) 998993132 +55 (71) 99899-3132 +55 (71) 99899.3132 +55 (071) 99899 3132 +55 (071) 998993132 +55 (071) 99899-3132 +55 (071) 99899.3132 +55 (071) 99899 3132 9 98993132 9 9899-3132 9 9899.3132 9 9899 3132 719 98993132 719 9899-3132 719 9899.3132 719 9899 3132 71 9 98993132 71 9 9899-3132 71 9 9899.3132 71 9 9899 3132 071 9 98993132 071 9 9899-3132 071 9 9899.3132 071 9 9899 3132 (71)9 98993132 (71)9 9899-3132 (71)9 9899.3132 (71)9 9899 3132 (71) 9 98993132 (71) 9 9899-3132 (71) 9 9899.3132 (071) 9 9899 3132 (071) 9 98993132 (071) 9 9899-3132 (071) 9 9899.3132 (071) 9 9899 3132 55719 98993132 55719 9899-3132 55719 9899.3132 55719 9899 3132 5571 9 98993132 5571 9 9899-3132 5571 9 9899.3132 5571 9 9899 3132 55071 9 98993132 55071 9 9899-3132 55071 9 9899.3132 55071 9 9899 3132 55(71)9 98993132 55(71)9 9899-3132 55(71)9 9899.3132 55(71)9 9899 3132 55(71) 9 98993132 55(71) 9 9899-3132 55(71) 9 9899.3132 55(071) 9 9899 3132 55(071) 9 98993132 55(071) 9 9899-3132 55(071) 9 9899.3132 55(071) 9 9899 3132 55 719 98993132 55 719 9899-3132 55 719 9899.3132 55 719 9899 3132 55 71 9 98993132 55 71 9 9899-3132 55 71 9 9899.3132 55 71 9 9899 3132 55 071 9 98993132 55 071 9 9899-3132 55 071 9 9899.3132 55 071 9 9899 3132 55 (71)9 98993132 55 (71)9 9899-3132 55 (71)9 9899.3132 55 (71)9 9899 3132 55 (71) 9 98993132 55 (71) 9 9899-3132 55 (71) 9 9899.3132 55 (071) 9 9899 3132 55 (071) 9 98993132 55 (071) 9 9899-3132 55 (071) 9 9899.3132 55 (071) 9 9899 3132 +55719 98993132 +55719 9899-3132 +55719 9899.3132 +55719 9899 3132 +5571 9 98993132 +5571 9 9899-3132 +5571 9 9899.3132 +5571 9 9899 3132 +55071 9 98993132 +55071 9 9899-3132 +55071 9 9899.3132 +55071 9 9899 3132 +55(71)9 98993132 +55(71)9 9899-3132 +55(71)9 9899.3132 +55(71)9 9899 3132 +55(71) 9 98993132 +55(71) 9 9899-3132 +55(71) 9 9899.3132 +55(071) 9 9899 3132 +55(071) 9 98993132 +55(071) 9 9899-3132 +55(071) 9 9899.3132 +55(071) 9 9899 3132 +55 719 98993132 +55 719 9899-3132 +55 719 9899.3132 +55 719 9899 3132 +55 71 9 98993132 +55 71 9 9899-3132 +55 71 9 9899.3132 +55 71 9 9899 3132 +55 071 9 98993132 +55 071 9 9899-3132 +55 071 9 9899.3132 +55 071 9 9899 3132 +55 (71)9 98993132 +55 (71)9 9899-3132 +55 (71)9 9899.3132 +55 (71)9 9899 3132 +55 (71) 9 98993132 +55 (71) 9 9899-3132 +55 (71) 9 9899.3132 +55 (071) 9 9899 3132 +55 (071) 9 98993132 +55 (071) 9 9899-3132 +55 (071) 9 9899.3132 +55 (071) 9 9899 3132 ====== partial matches ======= 55(71 9 7676-3131 55 (71 7676-3131 porque76763131sera ======== no matches ========== 41650-010 123.456.789-00 123456789-00
Brazilian phone numbers
2014-11-03T23:21:15.000Z
RegEx for an .htaccess rewrite into a subfolder without provoking a 'too many redirects' error
^\/(\w+)$
/standorte
RewriteMatch into subfolder
2016-07-25T11:54:01.000Z
([0-9A-F]{8})-([0-9A-F]{4})-([0-9A-F]{4})-([0-9A-F]{4})-([0-9A-F]{12})
1DB0DEC0-1AF0-4261-9B8B-3AA47687DBD4
Course GUID
2016-04-11T17:41:01.000Z
<(\w+)(\s[^>]*)?>\s*([^\s<].*?)(<\/\1>)
<div class="ct_acc_cadre"> <h2>TEST</h2> <ul> ok ça devrait le faire </ul> <p> i'm <span> fuck up </span> gg</p> </div>
html text grep
2014-09-09T13:53:29.000Z
Works for all types of comments and even multiline comments in java.
(?:(.*)?((?:\/\/.*|--.*|\/\*.*\*\/))(.*))
joragjlbjugf /*bfdf*/ ugefwjds bfjksbdb //ndsnvdlv ebfdbsdj --bjkdsbdbj
Comment Separator in Regex
2015-10-14T14:18:20.000Z
<img.+src="([^"]+)".+>
<body> <img alt="Background" src="/Imagens/homeFundototal.jpg" class="bg"> <div class="navbar" style="/*background-color: rgba(4, 4, 40, 0.85);*/" role="navigation"> <div class="container"> <div id="logoBar" class="navbar-header"> <a href="/pt-PT"><img style="padding-top:18px; width:312px;" src="/Imagens/LogoH.png" alt="Genuine Tantric - Lisbon Massage" title="Genuine Tantric - Lisbon Lounge"></a> </div> <ul id="barralinguas" class="nav navbar-nav navbar-right"> <li> <ul id="languageBar" class="list-unstyled"> <li><a title="Português" href="/pt-PT"><img class="img-rounded" width="30" src="/Imagens/pt.png"></a></li> <li><a title="English" href="/en-GB"><img class="img-rounded" width="30" src="/Imagens/en.png"></a></li> </ul></li> </ul> <ul id="barrasocial" class="nav navbar-nav navbar-right" style="margin-top: 0; clear:right;"> <li><a class="btn-menu" style="line-height: 10px; padding-top: 10px;" target="_blank" href="https://www.facebook.com/GenuineTantric" title="Página Oficial da Genuine Tantric no Facebook">Facebook</a></li> <li><a class="btn-menu" href="/pt-PT/Admin" id="loginLink" style="line-height: 10px; padding-top: 10px; padding-right: 0;">Log In</a></li> </ul> <div id="menuPrincipal" class="navbar-header"> <a href="#wheel2" class="wheel-button s" title="Genuine Menu" style="opacity: 1;"> <div id="imgBorder"></div> <img alt="Menu" src="/Imagens/flormenu.gif" width="90"> </a> <ul id="wheel2" class="wheel navigation"> <li class="item"><a href="/pt-PT/Home/Contactos">Contactos</a></li> <li class="item"><a href="/pt-PT/Terapeutas">Terapeutas</a></li> <li class="item"><a href="/pt-PT/Terapias">Terapias</a></li> <li class="item"><a href="/pt-PT/Home/Entrada">Home</a></li> </ul> </div> </div> </div> <section id="Content" style="background-color: rgba(255,255,255,0.5); padding-bottom: 20px;"> <div class="container body-content"> <h1 class="text-capitalize text-genuine">Novidades Genuínas<img class="tituloPinta" src="/Imagens/pinta.png" width="50"></h1> <h4>A pensar sempre na maior satisfação dos nossos clientes...</h4> <!-- Novidades --> <!-- You can move inline styles to css file or css block. --> <div id="slider1_container" style="position: relative; top: 0; left: 0; width: 1140px; height: 400px; overflow: hidden;"> <!-- Loading Screen --> <!-- Slides Container --> <!-- Arrow Left --> <!-- Arrow Right --> <!-- Arrow Navigator Skin End --> <div style="position: absolute; top: 0px; left: 0px; width: 1140px; height: 400px; transform-origin: 0px 0px 0px; transform: scale(1);"><div class="" style="position: relative; top: 0px; left: 0px; width: 1140px; height: 400px; overflow: visible;"><div class="slider-loading" u="loading" style="width: 370px; height: 400px; top: 0px; left: 0px; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div><div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 1140px; height: 400px; overflow: hidden; z-index: 0;"> <div style="width: 370px; height: 400px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img style="width:100%;" src="/Imagens/remate.png"> <img class="img-rounded" style="/* padding-top:10px;*/ width:100%; height:246px;" src="/Imagens/Terapeutas/61270254_unnamed (9).jpg"> <h3>Nova terapeuta no Genuine Tantric</h3> <p>Shakti: Massagens tântricas</p> </div> <div style="width: 370px; height: 400px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img style="width:100%;" src="/Imagens/remate.png"> <img class="img-rounded" style="/* padding-top:10px;*/ width:100%; height:246px;" src="/Imagens/Novidades/16102155_Nurama-Massage-Genuine-Tantric-1.jpg"> <h3>Happy hour Ritual Tântrico</h3> <p>das 13h às 16h</p> </div> <div style="width: 370px; height: 400px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img style="width:100%;" src="/Imagens/remate.png"> <img class="img-rounded" style="/* padding-top:10px;*/ width:100%; height:246px;" src="/Imagens/Novidades/61954951_Nurama-Massage-Genuine-Tantric.jpg"> <h3>Promoção Nurama Massagem</h3> <p>Promoção Nurama Massagem</p> </div> <div style="width: 370px; height: 400px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img style="width:100%;" src="/Imagens/remate.png"> <img class="img-rounded" style="/* padding-top:10px;*/ width:100%; height:246px;" src="/Imagens/Novidades/41834001_0063_20120612110216.jpg"> <h3>Promoção: 4 Mãos Massagem</h3> <p>Promoção: 4 mãos massagem</p> </div> <div style="position: absolute; z-index: 0; left: 385px; top: 0px;"></div></div><div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 1140px; height: 400px; overflow: hidden; z-index: 0;"><div style="width: 370px; height: 400px; top: 0px; left: 0px; position: absolute; opacity: 0; background-color: rgb(0, 0, 0);"></div> <div style="width: 370px; height: 400px; top: 0px; left: 385px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img style="width: 100%; transform: perspective(2000px);" src="/Imagens/remate.png"> <img class="img-rounded" style="width: 100%; height: 246px; transform: perspective(2000px);" src="/Imagens/Terapeutas/61270254_unnamed (9).jpg"> <h3 style="transform: perspective(2000px);">Nova terapeuta no Genuine Tantric</h3> <p style="transform: perspective(2000px);">Shakti: Massagens tântricas</p> <div class="slider-loading" u="loading" style="width: 370px; height: 400px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 370px; height: 400px; top: 0px; left: 770px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img style="width: 100%; transform: perspective(2000px);" src="/Imagens/remate.png"> <img class="img-rounded" style="width: 100%; height: 246px; transform: perspective(2000px);" src="/Imagens/Novidades/16102155_Nurama-Massage-Genuine-Tantric-1.jpg"> <h3 style="transform: perspective(2000px);">Happy hour Ritual Tântrico</h3> <p style="transform: perspective(2000px);">das 13h às 16h</p> <div class="slider-loading" u="loading" style="width: 370px; height: 400px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 370px; height: 400px; top: 0px; left: 1155px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img style="width: 100%; transform: perspective(2000px);" src="/Imagens/remate.png"> <img class="img-rounded" style="width: 100%; height: 246px; transform: perspective(2000px);" src="/Imagens/Novidades/61954951_Nurama-Massage-Genuine-Tantric.jpg"> <h3 style="transform: perspective(2000px);">Promoção Nurama Massagem</h3> <p style="transform: perspective(2000px);">Promoção Nurama Massagem</p> <div class="slider-loading" u="loading" style="width: 370px; height: 400px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 370px; height: 400px; top: 0px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img style="width: 100%; transform: perspective(2000px);" src="/Imagens/remate.png"> <img class="img-rounded" style="width: 100%; height: 246px; transform: perspective(2000px);" src="/Imagens/Novidades/41834001_0063_20120612110216.jpg"> <h3 style="transform: perspective(2000px);">Promoção: 4 Mãos Massagem</h3> <p style="transform: perspective(2000px);">Promoção: 4 mãos massagem</p> <div class="slider-loading" u="loading" style="width: 370px; height: 400px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> </div><span u="arrowleft" class="jssora14l" style="width: 30px; height: 50px; top: 175px; left: 0px; display: none;"> </span><span u="arrowright" class="jssora14r" style="width: 30px; height: 50px; top: 175px; right: 0px; display: none;"> </span></div></div></div> <!-- Espaço --> <h1 class="text-capitalize text-genuine">O nosso Espaço Genuíno<img class="tituloPinta" src="/Imagens/pinta.png" width="50"></h1> <h4>Onde acontece a magia do Tântra...</h4> <!-- Video --> <div class="embed-responsive embed-responsive-16by9"> <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/OQGxMl1aYOA"></iframe> </div> <div id="slider2_container" style="position: relative; top: 0px; left: 0px; width: 1140px; height: 570px; overflow: hidden; background-attachment: initial; background-color: rgb(25, 25, 25); background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;"> <!-- Loading Screen --> <!-- Slides Container --> <!-- Arrow Navigator Skin Begin --> <!-- Arrow Left --> <!-- Arrow Right --> <!-- Arrow Navigator Skin End --> <!-- Arrow Navigator Skin End --> <!-- Thumbnail Navigator Skin 02 Begin --> <!-- Thumbnail Navigator Skin End --> <div style="position: absolute; top: 0px; left: 0px; width: 1140px; height: 570px; transform-origin: 0px 0px 0px; transform: scale(1);"><div class="" style="position: relative; top: 0px; left: 0px; width: 1140px; height: 570px; overflow: visible; background: rgb(25, 25, 25);"><div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div><div u="slides" style="cursor: move; position: absolute; left: 240px; top: 0px; width: 900px; height: 570px; overflow: hidden; z-index: 0;"> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/51617114_IMG_0272.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/51617114_IMG_0272.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/2958907_IMG_0297.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/2958907_IMG_0297.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/56091017_IMG_0317.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/56091017_IMG_0317.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/26006320_IMG_0341.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/26006320_IMG_0341.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/55682182_IMG_0347.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/55682182_IMG_0347.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/12062023_IMG_0358.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/12062023_IMG_0358.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/1697039_IMG_0363.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/1697039_IMG_0363.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/60320845_IMG_0372.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/60320845_IMG_0372.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/3550291_f.jpg"> <img u="thumb" width="99" src="/Imagens/Novidades/3550291_f.jpg"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/29942745_IMG_0334.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/29942745_IMG_0334.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/49777729_IMG_0301.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/49777729_IMG_0301.JPG"> </div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"> <img u="image" style="width:100%;" src="/Imagens/Novidades/14122707_IMG_0324.JPG"> <img u="thumb" width="99" src="/Imagens/Novidades/14122707_IMG_0324.JPG"> </div> <div style="position: absolute; z-index: 0; left: 0px; top: 0px;"><div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; transform: none; z-index: 1;"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: none; position: absolute;" src="/Imagens/Novidades/56091017_IMG_0317.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/56091017_IMG_0317.JPG" style="display: none; transform: none;"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none; transform: none;"> <div class="slider-loading-1" style="transform: none;"> </div> <div class="slider-loading-2" style="transform: none;"> </div> </div></div><div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; transform: rotate(180deg) scale(0) perspective(2000px); opacity: 0; z-index: 1;"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: none; position: absolute;" src="/Imagens/Novidades/26006320_IMG_0341.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/26006320_IMG_0341.JPG" style="display: none; transform: none;"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none; transform: none;"> <div class="slider-loading-1" style="transform: none;"> </div> <div class="slider-loading-2" style="transform: none;"> </div> </div></div></div></div><div u="slides" style="cursor: move; position: absolute; left: 240px; top: 0px; width: 900px; height: 570px; overflow: hidden; z-index: 0;"><div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; opacity: 0; display: none; background-color: rgb(0, 0, 0);"></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/51617114_IMG_0272.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/51617114_IMG_0272.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/2958907_IMG_0297.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/2958907_IMG_0297.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/56091017_IMG_0317.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/56091017_IMG_0317.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px); display: none;"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/26006320_IMG_0341.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/26006320_IMG_0341.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: 900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/55682182_IMG_0347.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/55682182_IMG_0347.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/12062023_IMG_0358.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/12062023_IMG_0358.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/1697039_IMG_0363.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/1697039_IMG_0363.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/60320845_IMG_0372.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/60320845_IMG_0372.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/3550291_f.jpg" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/3550291_f.jpg" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/29942745_IMG_0334.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/29942745_IMG_0334.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/49777729_IMG_0301.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/49777729_IMG_0301.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> <div style="width: 900px; height: 570px; top: 0px; left: -900px; position: absolute; overflow: hidden; transform: perspective(2000px);"> <img u="image" style="width: 900px; height: 570px; top: 0px; left: 0px; transform: perspective(2000px); position: absolute;" src="/Imagens/Novidades/14122707_IMG_0324.JPG" border="0"> <img u="thumb" width="99" src="/Imagens/Novidades/14122707_IMG_0324.JPG" style="display: none; transform: perspective(2000px);"> <div class="slider-loading" u="loading" style="width: 900px; height: 570px; top: 0px; left: 0px; z-index: 1000; display: none;"> <div class="slider-loading-1"> </div> <div class="slider-loading-2"> </div> </div></div> </div><style> /* jssor slider arrow navigator skin 05 css */ /* .jssora05l (normal) .jssora05r (normal) .jssora05l:hover (normal mouseover) .jssora05r:hover (normal mouseover) .jssora05ldn (mousedown) .jssora05rdn (mousedown) */ .jssora05l, .jssora05r, .jssora05ldn, .jssora05rdn { position: absolute; cursor: pointer; display: block; background: url(../img/a17.png) no-repeat; overflow: hidden; } .jssora05l { background-position: -10px -40px; } .jssora05r { background-position: -70px -40px; } .jssora05l:hover { background-position: -130px -40px; } .jssora05r:hover { background-position: -190px -40px; } .jssora05ldn { background-position: -250px -40px; } .jssora05rdn { background-position: -310px -40px; } </style><span u="arrowleft" class="jssora14l" style="width: 30px; height: 50px; top: 260px; left: 240px; display: none;"> </span><span u="arrowright" class="jssora14r" style="width: 30px; height: 50px; top: 260px; right: 0px; display: none;"> </span><div u="thumbnavigator" class="jssort02" style="position: absolute; width: 240px; height: 570px; left:0; bottom: 0; background-color:#040428;"> <!-- Thumbnail Item Skin Begin --> <!-- Thumbnail Item Skin End --> <div style="position: absolute; top: 0px; left: 0px; width: 240px; height: 570px; transform-origin: 0px 0px 0px; transform: scale(1);"><div class="jssort02" style="position: relative; width: 240px; height: 570px; left: 0px; bottom: 0px; top: 0px; overflow: visible; background-color: rgb(4, 4, 40);"><style> /* jssor slider thumbnail navigator skin 02 css */ /* .jssort02 .p (normal) .jssort02 .p:hover (normal mouseover) .jssort02 .pav (active) .jssort02 .pav:hover (active mouseover) .jssort02 .pdn (mousedown) */ .jssort02 .w { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .jssort02 .c { position: absolute; top: 1px; left: 1px; width: 97px; height: 64px; border: #ffc20e 2px solid; } .jssort02 .p:hover .c, .jssort02 .pav:hover .c, .jssort02 .pav .c { background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABHCAYAAADx2uLMAAAOoUlEQVR4Xu1dCZQU1RV9r3qGGYWgMagkIjggaDAQQxBcjsEtIgoY1xg04nKUGOIuCohoQFSCgYlETDTGJQc0GEXcQBE1ggORBFwAE0CjbCpLcAHDMDP9c6vqnq5l6vd0Q4sd7eu5/at/VfVU1f3vv/ff/4VqjJHiQQmOFB4llAQpCVJCSZCSICWUBCmhDJTNE1W+BLgCvAfcIv+naHGp+dJYyCPgBHAG2KLUZX1x+Dr4Ong6vx8JvgbuXRJk52NX8O9gV4miA/gG2LYkyM5DS/AfYHtJxl60lNYlQXYCKMaBOXRn88FUSZDPFw+A+0tuaAc+WxLk88Np4LmSH44Fh5UEKTxagH+WZKxnhPVPScYtYKuSIIXFX7L4g2PAuRRloyTj4a+qIOWgSmHRGewtyTgDXMztDfxu67qOk8JBwfJiF+Q0cA24FnwbnMeWPZr72sn24VZL/ZP8/TBezNK1TZT8sS94CjgKnArWgCvAteS5hc1lFRbngHsKYRknzAefAqeBS3N8IP0lGYMt9eexAcTv70DwaIqWDZ3AU8G+4BGSHQPBB4vRQlLgD6RpHAreDC4BnwEvkGywR0h3gaskGVuZbEzCNWLHT8EnwH/RKilGVhwG7lKMgnQB95D80Ae8F1zGfFQcleD5CfUGHCLZcSe4zuJLmkkItIQ32NL7SR6gGN2LUZDvyPajI/gILaZNzGFXWiKmLTlGZnFUgCdye3/wMfqiLgW496ISpIOlJdfnaTFv0Ym6eIEJxDjultwwVZIQCDKUfytXNIDphPr2xSjItxLqPgU7si8eCc4GayU7WrDV3saI7RCeFx4EviS54a+WbusolgslO+r5t0ZxjNMWXG+59+ISxOI/PgbfBWsY+h7Hm7oSXC7ZcR2FEZ63MLCavPCMpYt08bIk4z1aTztGZTeCcxnmfmRJZBaXIEmRhqWfXwdWM7Qcks0XsDuZEURnnAfJDwuy+K0l8S6JllwFjqUAcXximZspOkGMZTSbDbfTsU4TO06gL6gDTwJnSj6w57e6xK55Fq9ldLg+x3syxTgw/MziD5rCB+CpbJm/tKZHVK8QI9X5tAditaV+HwnwR/BCyQ1fs9x70QmywTJz14r7msIoOuHZmSSiKj5IlQngsmSfABirPW4UY+pQlqMMC9eGZXdOeOWCSsss5MZiFGSNJdHYjoLkGhX1EnXmUgRARVW5W6eLeiJvShDEZiXbRM1WaFGO0j/EpN2PlsHsY85oC+5mufeiE2SFpf6gHG+alqCvgOjC9DFVZZ1yt5QxQXhO0qlibCkdLVOq5v4HwQVFXfgEWk/TWedkvF2MgrxmqT+iyeSbAR1H1CnjgzXTRHWEiN4sKoSScjaK4ShX5uhHmqOeEaCKihEKs4VWGLUw4zJtz8Ml441iFGQZHWgbiaI/OCirH06lRFPNWGFoETIGG/3BHhl/EpR/AnvlKMg3vYfssKuisKpmfczC+JEWU28V5BTLWGtRsabfZyUkA1tzYPd8o2dXViZaVsHviV75dNStzFQHfsXNKvcAXxWCDzPJu3fM+A5V8bcNB38xKFRraLAFCAdz7BTHi2BdsQoy3ZKdHRAIQiOAVUj5LuzPOSZrjFVgtRfyAqoaFuaGRplZkxLTuLv5bvQYiiIm6vMoWJZX/C621D/BsmgFGcDcTns6wQMo0q3g8owYrmWk097DUQffnTJb3z0cvEzUVS7SbfXFxl6RXJUaUSNRGDnKL9wdpJHNIvqWhOEo6g2vSZLwY0uy8dFiFGRXsIKJw4ekMar8fSrqOCIp9+GbUL/NyEcTRfkvreSqxgNlhYWYe6NRmhPxH2BPEcOzlMKka7xwOAy3UdTXBtcVxZWWXN1z4Cehv7WF33eaIBWMmnownO3Ihc27M5dl+AA/Yh5oKXNJT4voWoEYuHF2D406aj5Ml+mEySYKohFBjhGVkCAGp4IBzsn8HZqOuoIbZ0ZSNiRdT42i2A0cL8n4NcurwXEcsa9jBLiMCdE54JJCC3IGeXQO65sqmf2songXhVIkL4gxU0T1advAzhPNgFG84wmsiq5Qw7ocG/cPxjHh3zyToWxMdDMt0TrSaWxr/Lqm4sOWI5vN7ZFUtTlYRfYSgg1zOnuPN7dLELb6y7lgYL8dXjHjOK1VdICoS28gdS9bXm1UFd/HmHQ6bkEzVeWC8Aie1nkgH46EuybPgtV0NyaIrCjMv0T1vcbjoHLRZpViGupD0Zw5A+ccL+mGbE7+GrClZEdnchg4i/c9M1dBdgEvBYcWLM8fGXF77CDq3ILyUqa5J0b7KfUdvzGxtIpGBCG6ZQRRE4S9xtzFgWBIKm/QNyVxhI9Syys8C6IAnd1jDa0q5tueYldUAY6R/PBD8nnm7+ZkE+QssLqgL7xQCFU6XA0J5LiOUKtB1xIv440ChhkPf5tYhIqIwMS3pRHM2f4Mn8lYB915HZQeJwEoeprbDC4c0xUCzMdGmUraF9NEcjNnspwNNpPtw3HkZN77f8KCtOaU6UDJD/8GV9KRfRpygntxPdV+vghKCuD45LZ6D0CruNBgEjg41t+HZvF0K1hJnQndN5bubSHG3E8x+ZBdpt3iVgYdAHf7icbY2i19FazwxQwaFS32fP5Ge97zJLCW1vINhvyd8mjUZ4Mn8HefpCAyJkcx1oGPs2UsoCBZoB1F5RAVPUHUDVF1dwoTshoQwlCAn7PF9/Fv0mEL50ydyoeoaBcZJDIcDQaYZgqKMpQcBHIEb5wtoma0hGHS8ajiJFF5VIwrhmYsJrASuV8EDAatfbIspz2I8/A/4tpjKyjkoLAgj2VZsLaVKz8m8bhayR3LySn+ZJWeBl4Ofg8MLCc0hlCVo5msO0ok/b4nCg1FVTYH1sXzFL8b9PMjxEg/5cM0GWfu/cAgUVNP/8IxXSQiQ6PU4QyRheeELW+OqHN+yLTqxI468DVyIocHF3LtWQdJxm/CXdbT4GLL+qKHaU47is3gAx5Ve6s614s6aEFKf+KJQZGcTgwVu4qYVcpuDzAxIakMB2/qjA4syoQyu/AHqpNdMekz4stOh+DczqhnGEDRVIVYKEZ7ZXyXoZj5NcyhHDSOsYTQs+Jz6tdJMvoxrCsgzLNcdjoiEn3RSli63VuNuj7D+PVgOwiXOYb+6DOWfVhHx8xStU411VsZUBDNxHh99wIcc58vBkChY5HcXBFzSF4K2IcRwyUZQ5OirGfYKjsn9G+PMlQrNMaAL4rq46qyZzTF7rGNOI4b7vZk3Xz3OqIiysfBChdDvVkqKA6ON2iZ+P206ek7UD1dVOF0w/4BlGCG0uA7e46+Uhg8CDa3WM9026qTi7OEaNdKPjA5z8LV+BlZfR+MRGGcMeyBDS5u0JNFnY9B8akodC0o4B6sD+iOcxSCqrrd0hpVfVJUBvtiqEQYbwyqtxVQjMFZ1gz/LNs45BVwlsUaxjJW/oM0hfh4I3CEttUI74tqF1S/DMJCKUaGzuX0PYuwfRaqZmQeYpAn2ldD8x4Y6bsR1W9F9HhRvU8MuyETfvAmaV7rdfCq+II8/jDLvPAT7zqSMSf+dxyLz7AtXruH6fUm4E/HaqochOYu1S1T2OUEN8jQk+JtxEc3cJ1oUst1ZrA7mYntmYGPcOaybCua+f1L1NGR4qR6+G/hKuuVQkvEOhhMrMfHZd5ElMbEAFQdUvJBf3BKlkjsxFwWytVyoGLDZKajs8CELEJCjjblCaROeZD1LYNoZZW+YOrUZkxb485e91ZHh1OcgaxzuRysAlOgPxnm6O9wTEcR9cUCotFZhKvBmzjQm5iUafCFBvMzkAvpG2zoC27ONbk4l57/NknGeLBrruFw1NmCDn0FSliSR+aZhNOyN4MjEvr10fi4A+U65rZ6cb/BxzScPwHbc7DdG9szVZnDYhgbm2OZDT4sCpr4dCWzYI4KPkDjMQ9UMzGbCN7fc/kuJR3bhL84jwO4fju08rQBllu/lWMRz0pc3oCPxcl9oV7FEfQw8Go673e5+tEV43BwJq3Bja6wTxd6U60qt2O7r6rsyuuezBFiVHhxGvm/HHEMWNOEGA+BN2zv2t6LwF818dbUE1xF3lvyBx1wgxh3PgIlHzBfFfPS7XeDSzXo969nOU9Vx6M+loTUd/yRse7JvFoV+H3wZNQN4WRZS1HpGbfAHcDhDJFn87ptmAQO2NHF1tflkGI+kvn9f7B1VEk+YBLRNNSBDazz+tf7wEHMCx1Kq02JykVcfWhZK2xWgBv4kJtzbHUmz3+JY5f5YA1/fx/JH63Agfy9V+igs+EOcHChZgxHMKv7e8mObj5NNfNfNeCbnPFbz757Cx9IbIFyJi3BtEUqU0/8jRznC26gCcVjghLnhruYNuCiJmY4DyPTtPJ5TCGtADeEMtjNmcHeT5g05HmVkhuuBscXek79bl7wVM7SNQHT3fIyZJo5nQ/Bt/kAFrCVcXAYmqdQYQSmQmwkkyO7AKsZdPzOagE8npnEo8gwtvGQZsINI3lhJeeY5n1e74e8yfT4L9iCrDD2xc8O8zoHgCfiuGv9Fz7NKlGvRU+ILNk0Da7j5/IcR/LEUyKmDXiJ29oZ5aEwUf2MTVwDIQTMD7T+YczyztsZL+zcST9xO83aisQ7N4nqpVB/MMor8HUeu7Xjg+WdtRBmGy0lb8BKTHtwnJjYoNcYm4UR8cvPGgKn2ZN04JBh2858g2ozOISvG1xD60l+8CZgXKD4GIVchO+/Z7cDKI2ljsfp9r6/Ams0+4EjwaWh60jQI3a93LbgPc6Pt2OQ8MEX+UrbJq5P6so3Zm8SIy+KmE0JNxJ98Cz8iEhmoBzG3+nGZObSeIi8o6Awo0XMQeCR4FjfIk1tOMNgDLftaY+F7F6PpbO/EVxdbEtJ/04K55W70KHuIWJaoKw0okaNbPUsTCEEfIcxukQVDn7nY64YUMThYurOYrzrbcXrrWAD2gZ+Cm7C/jUoFzMYqZUC4yvw/w8p/SOYJZQEKQlSQkmQkiAllAQp4X+uLooDgixBpAAAAABJRU5ErkJggg==') /*/Imagens/pinta.png*/ center center; background-size: 60%; background-repeat: no-repeat; border-width: 0; top: 2px; left: 2px; width: 97px; height: 64px; } .jssort02 .p:hover .c, .jssort02 .pav:hover .c { top: 0; left: 0; width: 99px; height: 66px; border: #fff 1px solid; } </style><div u="slides" style="cursor: move; position: absolute; overflow: hidden; left: 14px; top: 96px; width: 212px; height: 378px; z-index: 0;"> <div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0; left: 0;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/51617114_IMG_0272.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/2958907_IMG_0297.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div></div><div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0; left: 0;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/56091017_IMG_0317.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/26006320_IMG_0341.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div></div><div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0; left: 0;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/55682182_IMG_0347.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/12062023_IMG_0358.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div></div><div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0; left: 0;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/1697039_IMG_0363.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/60320845_IMG_0372.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div></div><div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0; left: 0;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/3550291_f.jpg" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/29942745_IMG_0334.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div></div><div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; overflow: hidden; display: none;"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0; left: 0;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/49777729_IMG_0301.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px;"> <div class="w"><img u="thumb" width="99" src="/Imagens/Novidades/14122707_IMG_0324.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px;"></div> <div class="c"> </div> </div></div><div style="position: absolute; z-index: 0; left: 0px; top: -78px;"></div></div><div u="slides" style="cursor: move; position: absolute; overflow: hidden; left: 14px; top: 96px; width: 212px; height: 378px; z-index: 0;"><div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; opacity: 0; background-color: rgb(0, 0, 0);"></div> <div style="width: 212px; height: 66px; top: 78px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px);"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 0px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/51617114_IMG_0272.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/2958907_IMG_0297.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div style="width: 212px; height: 66px; top: 0px; left: 0px; z-index: 1000; display: none;"></div></div><div style="width: 212px; height: 66px; top: 156px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px);"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 0px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/56091017_IMG_0317.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div u="prototype" class="pav" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/26006320_IMG_0341.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div style="width: 212px; height: 66px; top: 0px; left: 0px; z-index: 1000; display: none;"></div></div><div style="width: 212px; height: 66px; top: 234px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px);"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 0px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/55682182_IMG_0347.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/12062023_IMG_0358.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div style="width: 212px; height: 66px; top: 0px; left: 0px; z-index: 1000; display: none;"></div></div><div style="width: 212px; height: 66px; top: 312px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px);"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 0px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/1697039_IMG_0363.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/60320845_IMG_0372.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div style="width: 212px; height: 66px; top: 0px; left: 0px; z-index: 1000; display: none;"></div></div><div style="width: 212px; height: 66px; top: 390px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px);"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 0px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/3550291_f.jpg" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/29942745_IMG_0334.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div style="width: 212px; height: 66px; top: 0px; left: 0px; z-index: 1000; display: none;"></div></div><div style="width: 212px; height: 66px; top: 0px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px);"><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 0px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/49777729_IMG_0301.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div u="prototype" class="p" style="position: absolute; width: 99px; height: 66px; top: 0px; left: 113px; transform: perspective(2000px);"> <div class="w" style="transform: perspective(2000px);"><img u="thumb" width="99" src="/Imagens/Novidades/14122707_IMG_0324.JPG" class="" style="width: 100%; height: 100%; border: none; position: absolute; top: 0px; left: 0px; transform: perspective(2000px);"></div> <div class="c" style="transform: perspective(2000px);"> </div> </div><div style="width: 212px; height: 66px; top: 0px; left: 0px; z-index: 1000; display: none;"></div></div></div></div></div></div></div></div></div> </div> </section> <footer style="background-color: rgba(4, 4, 40, 0.75)"> <div class="container"> <div style="margin-top: 10px;"> <div style="margin-top:25px;display: inline-block;"> <span style="color: white;"> Todos os direitos reservados © 2015, Genuine Tantric. </span> </div> <a href="http://www.tranquilo.pt" title="Produzido por:"><img alt="Tranquilo - Technology Solutions" class="pull-right" src="/Imagens/TranquiloLogoV3.png" width="200"> </a> </div> </div> </footer> <script src="/bundles/jquery?v=fOc4bS1moH3TSyoIUl_kTtRCwUpQJeHjrBj6iZ6-cz41"></script> <script src="/bundles/bootstrap?v=1SvvO6dMgBLYCu7nhq3vIMdYhGrbhL8gcyRdOb9lffQ1"></script> <script type="text/javascript"> $(".wheel-button").wheelmenu({ trigger: "hover", // Can be "click" or "hover". Default: "click" animation: "fly", // Entrance animation. Can be "fade" or "fly". Default: "fade" animationSpeed: "fast", // Entrance animation speed. Can be "instant", "fast", "medium", or "slow". Default: "medium" angle: "[0, 180]" // Angle which the menu will appear. Can be "all", "N", "NE", "E", "SE", "S", "SW", "W", "NW", or even array [0, 360]. Default: "all" or [0, 360] }); $("#wheel2").hover(function () { $("#imgBorder").toggleClass("corBorder"); }); </script> <script src="/bundles/jqueryslider?v=OI9WLXua7VwbQV2OGLjDXmh5fNeZY34zQJLNMfuDctA1"></script> </body>
img
2015-10-17T11:02:23.000Z
String Interpolation. Works Like Angular
{{((\w+)(.\w+|\[\d+\])+?)}}
Sayın {{test.ate}} {{Name.Test[1]}} {{Surname.Test[1].Test}} {{a[0].test}} {{a[0].test[0]}} {{a[0].test[0].Yunus[0].Surname}} {{a.a[1][1]}} {{test[1][1][1312312].Test[0].tes.test.tes}} bla bla bla
String Interpolation
2016-02-26T13:11:49.000Z
This regex is for validating website url * Only accept http and https * With or without www * With or without subdomain * .com or dot any * With any sub path * With or without params * With or without special characters * Without spaces
^(http:\/\/|https:\/\/)?(www\.)?[a-zA-Z0-9-_\.]+\.[a-zA-Z]+(:\d+)?(\/[a-zA-Z\d\.\-_]*)*[a-zA-Z.!@#$%&=-_'":,.?\d*)(]*$
http://preview.ynot.com:80/cgibin/nd_CGI-50.cgi/YnotPhoenix/CFsMain https://the-parrot-lands.com/ewefwe/fwefwe/jljlk%hkuj http://twas.brillig.and.the.slithy.toves. http://csrpathway.com https://google.com https://google.com:8080/ parrotlands.com/ http://www.google.com/aa http://www.google.com https://regex101.info http://a.com:8080/asdfas.php?as=3729&asd=df&a=*)fw3287&asdf=223 101_regix.com/aaa/ t.me/anhnch ig.me/aa/33/22/332833/adasd/eoe/owerw.php ww.com/index.php?asd=339298 http://art.com/artgallery/default.asp?sid=9DF4BC0580DF11D3ACB60090271E26A8&command=freelist http://www.drugemporium.com/cec/cstage?eccookie=@eccookie@&ecaction=de_ecwalkin&template=de_walkin.en.htm http://www.sfgate.com/cgibin/srch_archive/dropdn_srch.cgi?template=templates2Ftypes2Ffood2Ffd_ddstemplate.shtml&item=templates%2Ftypes%2Ffood%2Ffd_ddsitem.txt&subject=RESTAURANTS%2BAND%2BREVIEW&keyword=shrimp&datesearch=366&year=
Website validation
2022-06-27T04:00:38.000Z
Match ESET DNS Load Balancer domains for exclusion from DNS logs
^h[1,3,5]-f5(?:lb|gtm)01-s\.eset\.com$
h1-f5lb01-s.eset.com h1-f5gtm01-s.eset.com h3-f5lb01-s.eset.com h3-f5gtm01-s.eset.com h5-f5lb01-s.eset.com h5-f5gtm01-s.eset.com
ESET DNS Load Balancer domains (DNS)
2023-06-14T14:56:27.000Z
A variety of BEM flavoured regex.
(^[a-z][a-zA-Z0-9]+)+((_|__)(([a-z][a-zA-Z0-9]+)(_|__)?)+)?$
myclasstest myclassTest myclassTest_test myclassTest__test myclassTest__test_test myclassTest_test myclassTest__test_test
BEM
2019-09-03T15:51:34.000Z
LLPart1:(.*?)LLPart2
BundleFormat: 1 Name: TestIllegalStringsLintalist Description: Created just to see what strings Lintalist uses Author: Gurlan Vasile TitleMatch: .txt Patterns: - LLPart1: [[Calendar=]] LLPart2: >>date LLKey: LLShorthand: >>calendar LLScript: - LLPart1: Syntax: __multilinevar --> create multiline variable Notepad++: __lngAuto --> Notepad++ : change language to Autohotkey AHK Studio: __refresh --> AHK Studio : refresh project Other: __tgs --> any editor : paste tags template __newcode --> any editor : create code for Lintalist to be displayed properly __lintalist --> any editor : create code for Lintalist to be displayed properly LLPart2: LLKey: LLShorthand: >>>? LLScript: - LLPart1: messagebox show LLPart2: LLKey: LLShorthand: LLScript: MsgBox, Test - LLPart1: wfaw LLPart2: fwa LLKey: LLShorthand: LLScript: - LLPart1: some code here LLPart2: some descriptive text here LLKey: LLShorthand: smcd LLScript: msgbox, HelloWorld
LIntalist bundle parser test
2018-08-13T09:29:58.000Z
Check special character except alpha_num
^(?=.*(_|[^\w])).+$
01234596 $%^&
Check special character except alpha_num
2021-07-09T09:45:46.000Z
Use regex to test whether a letter is a consonant or not. Use /[B-DF-HJ-NP-TV-Z]/ for capitals.
[b-df-hj-np-tv-z]
Match Consonants
2022-06-10T19:58:25.000Z
^[a-zA-Z0-9_\-\.\u0000-\u007F\u0080-\u00FF\u0100-\u017F\u0180-\u024F]+@[a-zA-Z0-9_\-\u0000-\u007F\u0080-\u00FF\u0100-\u017F\u0180-\u024F]+(?:\.[a-zA-Z0-9_\-\u0000-\u007F\u0080-\u00FF\u0100-\u017F\u0180-\u024F$]+)+$
[email protected] Teréza.Nováková@itesco.cz [email protected] [email protected] Eliška.Bučková@příjmení.cz
email address
2019-09-23T14:08:19.000Z
(?<=\()(?:[^()]+|\([^)]+\))+(?=\))
Hello (World (123)456)789
Test Balanced Parentheses
2015-04-14T15:15:31.000Z
(?:^|\W)(@|)(sweetie|sweetiebot)(?:\W|$)
@@sweetiebot hi @sweetiebot hoho lol sweetie@ @ sweetie /)sweetiebot oh come on sweetiebelle.
detect bot
2016-02-26T22:56:03.000Z
([(-.+]*+[0-9]+[()-.+ ]*+[0-9]+[()-.+ ]*+[0-9]+[()-.+ ]*+[0-9]+[()-.+ ]*+[0-9]+[()-.+ ]*+[0-9]+[()-.+ ]*+[0-9]+[()-.+ ]*+[0-9]*+[()-.+ ]*+[0-9]*+[()-.+ ]*+[0-9]*+[()-.+ ]*+[0-9]*+)
Lorem ipsum [email protected] dolor sit amet, 555 123555 consectetur adipiscing elit. Here (works) 0606060606 (not works) 06.06.06.0.06.06 06.06 ... .06.06.06 price is 20. 000.000 555.123.4565 +1-(800)-545-2468 + 1 -(800)-545-2468 2-(800)-545-2468 3-800-545-2468 555-123-3456 555 222 3342 (234) 234 2442 (243)-234-2342 1234567890 123.456.7890 123.4567 123-4567 1234567900 12345678900 +8.4.0.9.6.6.4.3.0.0.9 my price is only 20$, 2000$
Phone Number
2018-06-08T04:36:05.000Z
(?:www\.|(?:https?|ftp|news|file):\/\/)[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|]
bla1 bla2 http://www.peckale.com/#!contact/c11m6 bla3 www.peckale.com/#!contact/c11m6, www.peckale.com/#!contact/c11m6!
www.cbazaar.com/latest-arrivals.html#!page=1
2016-09-13T06:54:28.000Z
<span\s*style="(.*)"\s*>(?<content>.*?)<\/span>
<div class="recent-ticket"> <div class="truncate">#115904 - تست</div><small><span class="pull-right">1 day ago</span><span style="color:#ff6600">پاسخ مشتری</span></small></div><div class="recent-ticket"> <div class="truncate">#962777 - تست اسکرول ناحیه کاربری</div><small><span class="pull-right">1 day ago</span><span style="color:#779500">در انتظار پاسخ</span></small></div><div class="recent-ticket"> <div class="truncate">#411127 - تست موارد</div><small><span class="pull-right">1 day ago</span><span style="color:#779500">در انتظار پاسخ</span></small></div><div class="recent-ticket"> <div class="truncate">#967913 - تست استایل</div><small><span class="pull-right">2 weeks ago</span><span style="color:#888888">بسته شده</span></small> </div>
Regex for span content
2017-10-05T08:54:26.000Z
Identifies duplicate word and word combinations that exist consecutively within a string for removal. It is currently configured for up to 3 consecutive words but can be extended by adding additional (\s+\w)* to the first groups pattern match logic use with substitution val $1 good for removing dups for fred fred fred fred smith fred smith Michael J Fox Michael J Fox etc...
((\b\w+(\s+\w+)*(\s+\w+)*\b))(\s+\1)+
RURAL ROUTE 2 RURAL ROUTE 2 route 2 route 2 route route route
identify duplicate consecutive words + word combinations to remove
2021-06-08T16:19:09.000Z
Data Transfer Element (\d+):(Full|Empty)(?: \(Storage Element (\d+) Loaded\):VolumeTag = (\w+))?
Storage Changer /dev/sg2:2 Drives, 48 Slots ( 0 Import/Export ) Data Transfer Element 0:Full (Storage Element 2 Loaded):VolumeTag = ALF029L5 Data Transfer Element 1:Empty Storage Element 1:Full Storage Element 2:Empty Storage Element 3:Empty Storage Element 4:Full Storage Element 5:Full :VolumeTag=AEF812LV Storage Element 6:Full :VolumeTag=ALF021L5 Storage Element 7:Full :VolumeTag=ALF019L5 Storage Element 8:Full Storage Element 9:Full :VolumeTag=ALF035L5 Storage Element 10:Full :VolumeTag=AEF839LV Storage Element 11:Full :VolumeTag=ALF018L5 Storage Element 12:Empty Storage Element 13:Full :VolumeTag=AEF832LV Storage Element 14:Full :VolumeTag=ALF002L5 Storage Element 15:Full :VolumeTag=ALF020L5 Storage Element 16:Full :VolumeTag=ALF016L5 Storage Element 17:Full :VolumeTag=AEF831LV Storage Element 18:Full Storage Element 19:Full :VolumeTag=AEF814LV Storage Element 20:Full :VolumeTag=ALF010L5 Storage Element 21:Full :VolumeTag=ALF022L5 Storage Element 22:Full :VolumeTag=ALF001L5 Storage Element 23:Full :VolumeTag=AEF830LV Storage Element 24:Full :VolumeTag=ALF008L5 Storage Element 25:Full :VolumeTag=ALF038L5 Storage Element 26:Full Storage Element 27:Full :VolumeTag=ALF034L5 Storage Element 28:Full :VolumeTag=ALF009L5 Storage Element 29:Full :VolumeTag=AEF821LV Storage Element 30:Full :VolumeTag=ALF013L5 Storage Element 31:Full :VolumeTag=AEF822LV Storage Element 32:Full :VolumeTag=ALF006L5 Storage Element 33:Full :VolumeTag=ALF028L5 Storage Element 34:Full :VolumeTag=AEF813LV Storage Element 35:Full :VolumeTag=ALF007L5 Storage Element 36:Full :VolumeTag=ALF012L5 Storage Element 37:Full :VolumeTag=ALF005L5 Storage Element 38:Full :VolumeTag=ALF027L5 Storage Element 39:Full :VolumeTag=ALF025L5 Storage Element 40:Full :VolumeTag=AEF823LV Storage Element 41:Full :VolumeTag=ALF036L5 Storage Element 42:Full :VolumeTag=ALF017L5 Storage Element 43:Full :VolumeTag=AEF811LV Storage Element 44:Full :VolumeTag=AEF810LV Storage Element 45:Full :VolumeTag=ALF024L5 Storage Element 46:Full :VolumeTag=ALF003L5 Storage Element 47:Full :VolumeTag=ALF032L5 Storage Element 48:Full :VolumeTag=ALF039L5
GetDrive
2018-04-26T15:27:45.000Z
同密码一样,下面是E-mail地址合规性的正则检查语句。
^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$
校验E-Mail 地址
2017-06-22T04:07:59.000Z
1. positive look behind: it does not consume the first character, so it can be used for the next match 2. flags=re.I is to ignore case sensitive
(?<=[qwrtypsdfghjklzxcvbnm])([aeiou]{2,})([qwrtypsdfghjklzxcvbnm])
use positive look behind and flags=re.I
2017-11-30T17:29:16.000Z
^\+33\d{9}$
phone
2015-03-24T12:46:30.000Z
:([a-zA-Z0-9]+)
test
2015-01-29T16:19:17.000Z
(0[1-9]|1[0-9]|2[0-9]|3[01]).(0[1-9]|1[012]).([19]{2})?([1-9]{2})
31/09/1997
Date of Birth
2016-06-06T01:47:13.000Z
Finds images that have a certain class (in this case, "foo")
(<img[^>]*class=\"[^>]*\bfoo\b[^>]*\"[^>]*>)
<img src="" class="foo" /> <img src="" class="foo bar" /> <img src="" class="baz foo bar" /> <img src="" class="dont match fool" />
Image Class Test
2016-09-01T17:12:28.000Z
this parses keys for logpush log files from cloudflare in s3
^(?:(?P<prefix>.+)\/)?(?P<date>\d{8})/(?P<start_time>\d{8}T\d{6}Z)_(?P<end_time>\d{8}T\d{6}Z)_(?P<random_string>.+)\.log\.gz$
raw/ac0.us/20200425/20200425T114500Z_20200425T115000Z_2c5c86a5.log.gz 20200425/20200425T114500Z_20200425T115000Z_2c5c86a5.log.gz
logpush regex
2020-04-26T17:12:07.000Z
(10[.][0-9]{4,}[^\s"\/<>]*\/[^\s"<>]+)
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class=" js flexbox canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths" xmlns:mml="http://www.w3.org/1998/Math/MathML"><head><script async="" src="http://movie-usa.glencoesoftware.com/metadata/10.1073/pnas.1306145110?callback=jQuery172021458117119691522_1473002575568&amp;_=1473002597145"></script> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Human resistin, a proinflammatory cytokine, shows chaperone-like activity </title> <meta name="googlebot" content="NOODP"> <meta content="Human resistin, a proinflammatory cytokine, shows chaperone-like activity" name="og:title"> <meta name="og:description" content="National Academy of Sciences"> <meta content="Proceedings of the National Academy of Sciences" name="og:site_name"> <meta name="og:type" content="article"> <meta content="/pnas/110/51/20467.atom" name="HW.identifier"> <meta name="DC.Format" content="text/html"> <meta name="DC.Language" content="en"> <meta content="Human resistin, a proinflammatory cytokine, shows chaperone-like activity" name="DC.Title"> <meta content="10.1073/pnas.1306145110" name="DC.Identifier"> <meta content="2013-12-17" name="DC.Date"> <meta content="National Academy of Sciences" name="DC.Publisher"> <meta content="Madhuri Suragani" name="DC.Contributor"> <meta content="Varma D. Aadinarayana" name="DC.Contributor"> <meta content="Aleem Basha Pinjari" name="DC.Contributor"> <meta content="Karunakar Tanneeru" name="DC.Contributor"> <meta content="Lalitha Guruprasad" name="DC.Contributor"> <meta content="Sharmistha Banerjee" name="DC.Contributor"> <meta content="Saurabh Pandey" name="DC.Contributor"> <meta content="Tapan K. Chaudhuri" name="DC.Contributor"> <meta content="Nasreen Zafar Ehtesham" name="DC.Contributor"> <meta content="Proceedings of the National Academy of Sciences" name="citation_journal_title"> <meta content="PNAS" name="citation_journal_abbrev"> <meta content="National Acad Sciences" name="citation_publisher"> <meta content="0027-8424" name="citation_issn"> <meta content="1091-6490" name="citation_issn"> <meta name="citation_author" content="Madhuri Suragani"> <meta name="citation_author_institution" content="aDr. Reddy’s Institute of Life Sciences, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author" content="Varma D. Aadinarayana"> <meta name="citation_author_institution" content="aDr. Reddy’s Institute of Life Sciences, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author" content="Aleem Basha Pinjari"> <meta name="citation_author_institution" content="aDr. Reddy’s Institute of Life Sciences, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author" content="Karunakar Tanneeru"> <meta name="citation_author_institution" content="bSchool of Chemistry, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author" content="Lalitha Guruprasad"> <meta name="citation_author_institution" content="bSchool of Chemistry, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author" content="Sharmistha Banerjee"> <meta name="citation_author_institution" content="cSchool of Life Sciences, Department of Biochemistry, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author" content="Saurabh Pandey"> <meta name="citation_author_institution" content="aDr. Reddy’s Institute of Life Sciences, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author" content="Tapan K. Chaudhuri"> <meta name="citation_author_institution" content="dKusuma School of Biological Sciences, Indian Institute of Technology, New Delhi 110016, India; and"> <meta name="citation_author" content="Nasreen Zafar Ehtesham"> <meta name="citation_author_institution" content="aDr. Reddy’s Institute of Life Sciences, University of Hyderabad, Hyderabad 500046, India;"> <meta name="citation_author_institution" content="eInflammation Biology and Cell Signaling Laboratory, National Institute of Pathology, New Delhi 110029, India"> <meta name="citation_author_email" content="[email protected]"> <meta content="Human resistin, a proinflammatory cytokine, shows chaperone-like activity" name="citation_title"> <meta content="12/17/2013" name="citation_date"> <meta content="110" name="citation_volume"> <meta content="51" name="citation_issue"> <meta content="20467" name="citation_firstpage"> <meta content="20472" name="citation_lastpage"> <meta content="110/51/20467" name="citation_id"> <meta content="110/51/20467" name="citation_id_from_sass_path"> <meta content="pnas;110/51/20467" name="citation_mjid"> <meta content="10.1073/pnas.1306145110" name="citation_doi"> <meta content="http://www.pnas.org/content/110/51/20467.abstract" name="citation_abstract_html_url"> <meta content="http://www.pnas.org/content/110/51/20467.full" name="citation_fulltext_html_url"> <meta content="http://www.pnas.org/content/110/51/20467.full.pdf" name="citation_pdf_url"> <meta content="/content/110/51.cover.gif" name="issue_cover_image"> <meta content="http://www.pnas.org/content/110/51/20467" name="citation_public_url"> <meta content="24282299" name="citation_pmid"> <meta name="citation_section" content="Biochemistry"> <meta name="robots" content="noarchive"> <link href="/content/110/51/20461.short" rel="prev"> <link href="/content/110/51/20473.short" rel="next"> <link rel="stylesheet" type="text/css" media="all" href="shared/css/hw-global.css"> <link rel="stylesheet" type="text/css" media="all" href="shared/css/standard-designs/design25/main.css"> <link rel="stylesheet" type="text/css" media="all" href="local/css/hw-local-global.css"> <link rel="stylesheet" type="text/css" media="all" href="local/css/hw-local-global-overrides.css"> <link rel="stylesheet" type="text/css" media="all" href="local/css/hw-local-global-pages.css"> <link rel="stylesheet" type="text/css" media="all" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,600"> <link rel="stylesheet" type="text/css" media="all" href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700"> <link rel="stylesheet" type="text/css" media="all" href="local/css/hw-local-sidebar.css"> <link rel="stylesheet" type="text/css" media="all" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css"> <link rel="stylesheet" type="text/css" media="all" href="http://pnas-movie.glencoesoftware.com/static/video-js.min.css"> <link rel="stylesheet" type="text/css" media="print" href="shared/css/hw-print.css"> <link rel="stylesheet" type="text/css" media="all" href="shared/css/hw-page-content.css"> <link rel="stylesheet" type="text/css" media="all" href="shared/css/jquery.fancybox-1.3.4.css"> <link rel="stylesheet" type="text/css" media="all" href="local/css/hw-local-content.css"> <link rel="stylesheet" type="text/css" media="all" href="local/css/hw-tab-redesign.css"> <link rel="stylesheet" type="text/css" media="all" href="site/css/main.css"> <link rel="stylesheet" type="text/css" media="all" href="site/css/global_styles.css"> <link rel="stylesheet" type="text/css" media="all" href="shared/css/standard-designs/design2/leaderboard.css"> <script type="text/javascript" id="session-d98193577e1"> var callbackToken='6144EA3ACB618B8'; </script> <script type="text/javascript" src="local/js/jquery-1.7.2.min.js"></script> <!-- <script type="text/javascript" src="local/js/jquery.ui.widget.min.js"></script> --> <script type="text/javascript" src="local/js/modernizr.js"></script> <script type="text/javascript" src="shared/js/fingerprint.js"></script> <script type="text/javascript" src="shared/js/hw-shared.js"></script> <script type="text/javascript" src="local/js/hw-local-js-settings.js"></script> <script type="text/javascript" src="local/js/jquery.tabify.js"></script> <script type="text/javascript" src="local/js/hw-local-global.js"></script> <script type="text/javascript" src="local/js/expand.js"></script> <script type="text/javascript" src="local/js/script.js"></script> <script type="text/javascript" src="shared/js/design/hw-design1.js"></script> <script type="text/javascript" src="http://pnas-movie.glencoesoftware.com/static/video_inline.min.js"></script> <!-- <script type="text/javascript" src="shared/js/pages/hw-content.js"></script> --> <script type="text/javascript" src="shared/js/fancybox/jquery.fancybox-1.3.4.js"></script> <script type="text/javascript" src="shared/js/fancybox/jquery.easing-1.3.pack.js"></script> <script type="text/javascript" src="shared/js/fancybox/jquery.mousewheel-3.0.4.pack.js"></script> <script type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences_all.js"></script> <script type="text/javascript" src="shared/js/util/hw-view-specific-access-check.js"></script> <script type="text/javascript" src="shared/js/util/hw-access-check.js"></script> <script type="text/javascript" src="local/js/article-dynamic-elements.js"></script> <script type="text/javascript" src="local/js/hw-local-content.js"></script> <script type="text/javascript" src="shared/js/util/hw-floatabs.js"></script> <script type="text/javascript" src="local/js/hw-local-tabbed.js"></script> <script type="text/javascript" src="shared/js/util/hw-mathjax.js"></script> </head> <body class="tex2jax_ignore"> <div class="hw-gen-page pagetype-content" id="pageid-content" itemscope="itemscope" itemtype="http://schema.org/ScholarlyArticle"> <div id="marquee_background"> <div class="container"> <div id="primary"> <ul> <li style="padding-left:0;"> <a href="/content/current">Current Issue </a> </li> <li> <a href="/content">Archive </a> </li> <li> <a href="/multimedia">News &amp; Multimedia </a> </li> <li> <a href="site/authors/index.xhtml">Authors </a> </li> <li class="last"> <a href="site/aboutpnas/index.xhtml">About </a> </li> </ul> <ul id="drop_menu"> <li> <a href="site/misc/collectedpapers.xhtml">Collected Articles </a> <div class="menu-container-3"> <p> <em>Special collections highlighting noteworthy articles </em> </p> <div class="column-1"> <ul> <li> <a href="site/aboutpnas/colloquia.xhtml">Colloquium Papers </a> </li> <li> <a href="/content/by/section/Commentaries">Commentaries </a> </li> <li> <a href="/cgi/collection/core_concepts">Core Concepts </a> </li> <li> <a href="site/misc/cozzarelliprize.xhtml">Cozzarelli Prize </a> </li> <li> <a href="/cgi/collection/editorials?ck=nck">Editorials </a> </li> <li> <a href="/cgi/collection/feature_articles?ck=nck">Feature Articles </a> </li> <li> <a href="http://frontmatter.pnas.org">Front Matter </a> </li> <li> <a href="/cgi/collection/inaugurals?ck=nck">Inaugural Articles </a> </li> <li> <a href="/content/by/section/In This Issue">In This Issue </a> </li> </ul> </div> <div class="column-1"> <ul> <li> <a href="/cgi/collection/inner_workings">Inner Workings </a> </li> <li> <a href="/cgi/collection/letters?ck=nck">Letters and Replies </a> </li> <li> <a href="/cgi/collection/news_features">News Features </a> </li> <li> <a href="/cgi/collection/opinions">Opinions </a> </li> <li> <a href="/content/by/section/Perspectives">Perspectives </a> </li> <li> <a href="http://classics.pnas.org">PNAS Classics </a> </li> <li> <a href="/content/by/section/PNAS+Plus">PNAS Plus </a> </li> <li> <a href="site/misc/pnas_portals.xhtml">PNAS Portals </a> </li> <li> <a href="/cgi/collection/profiles?ck=nck">Profiles </a> </li> </ul> </div> <div class="column-1 last"> <ul> <li> <a href="/cgi/collection/qnas?ck=nck">QnAs </a> </li> <li> <a href="/content/by/section/Retrospectives">Retrospectives </a> </li> <li> <a href="/cgi/collection/science_culture">Science and Culture </a> </li> <li> <a href="/cgi/collection/significance_statements">Significance Statements </a> </li> <li> <a href="site/aboutpnas/special.xhtml">Special Features </a> </li> <li> <a href="http://sustainability.pnas.org/">Sustainability Science </a> </li> </ul> </div> </div> </li> <li> <a href="/search">Browse by topic </a> <div class="menu-container-3"> <div class="column-1"> <ul> <li> <a href="/content/by/section/Agricultural Sciences">Agricultural Sciences </a> </li> <li> <a href="http://Anthropology.pnas.org/">Anthropology </a> </li> <li> <a href="/content/by/section/Applied Biological Sciences">Applied Biological Sciences </a> </li> <li> <a href="/content/by/section/Applied Mathematics">Applied Mathematics </a> </li> <li> <a href="/content/by/section/Applied Physical Sciences">Applied Physical Sciences </a> </li> <li> <a href="/content/by/section/Astronomy">Astronomy </a> </li> <li> <a href="/content/by/section/Biochemistry">Biochemistry </a> </li> <li class="submenu-space"> <a href="/content/by/section/Biophysics and Computational Biology">Biophysics and Computational Biology </a> </li> <li> <a href="/content/by/section/Cell Biology">Cell Biology </a> </li> <li> <a href="http://chemistry.pnas.org/">Chemistry </a> </li> <li> <a href="/content/by/section/Computer Sciences">Computer Sciences </a> </li> <li> <a href="/content/by/section/Developmental Biology">Developmental Biology </a> </li> <li class="submenu-space"> <a href="/content/by/section/Earth, Atmospheric, and Planetary Sciences">Earth, Atmospheric, and Planetary Sciences </a> </li> </ul> </div> <div class="column-1"> <ul> <li> <a href="/content/by/section/Ecology">Ecology </a> </li> <li> <a href="/content/by/section/Economic Sciences">Economic Sciences </a> </li> <li> <a href="/content/by/section/Engineering">Engineering </a> </li> <li> <a href="/content/by/section/Environmental Sciences">Environmental Sciences </a> </li> <li> <a href="/content/by/section/Evolution">Evolution </a> </li> <li> <a href="/content/by/section/Genetics">Genetics </a> </li> <li> <a href="/content/by/section/Geology">Geology </a> </li> <li> <a href="/content/by/section/Geophysics">Geophysics </a> </li> <li class="submenu-space"> <a href="/content/by/section/Immunology and Inflammation">Immunology and Inflammation </a> </li> <li> <a href="/content/by/section/Mathematics">Mathematics </a> </li> <li> <a href="/content/by/section/Medical Sciences">Medical Sciences </a> </li> <li> <a href="/content/by/section/Microbiology">Microbiology </a> </li> </ul> </div> <div class="column-1 last"> <ul> <li> <a href="/content/by/section/Neuroscience">Neuroscience </a> </li> <li> <a href="/content/by/section/Pharmacology">Pharmacology </a> </li> <li> <a href="http://physics.pnas.org/">Physics </a> </li> <li> <a href="/content/by/section/Physiology">Physiology </a> </li> <li> <a href="/content/by/section/Plant Biology">Plant Biology </a> </li> <li> <a href="/content/by/section/Political Sciences">Political Sciences </a> </li> <li> <a href="/content/by/section/Population Biology">Population Biology </a> </li> <li class="submenu-space"> <a href="/content/by/section/Psychological and Cognitive Sciences">Psychological and Cognitive Sciences </a> </li> <li> <a href="/content/by/section/Social Sciences">Social Sciences </a> </li> <li> <a href="/content/by/section/Statistics">Statistics </a> </li> <li> <a href="http://sustainability.pnas.org/">Sustainability Science </a> </li> <li> <a href="/content/by/section/Systems Biology">Systems Biology </a> </li> </ul> </div> </div> </li> <li> <a href="/content/early/recent">Early Edition </a> <div class="menu-container-1"> <div class="column-1 last"> <ul> <li> <a href="/content/early/recent">All Early Edition </a> </li> <li> <a href="site/highlights/highlights.xhtml">Highlights from Early Edition </a> </li> </ul> </div> </div> </li> <li id="front-matter" style="background: none;"> <a href="http://frontmatter.pnas.org">Front Matter </a> </li> </ul> </div> <div id="main"> <div id="content-block" class="eq hippio-videos-injected" style="height: 1485px;"> <ul id="site-breadcrumbs"> <li class="firstcrumb"> <a href="/"> <img xmlns="" src="local/img/nav/breadcrumb-home.gif" width="13" height="11" alt="Go to PNAS Homepage"> </a> </li> <li> <span class="bc-sep"> &gt; </span> <a href="/content/110/51.toc"> Current Issue </a> </li> <li> <span class="bc-sep"> &gt; </span> <span xmlns="" class="btext">vol. 110 no. 51 </span> </li> <li class="lastcrumb"> <span class="bc-sep"> &gt; </span> <span xmlns="" class="btext">Madhuri Suragani , 20467 – 20472</span>, <span class="doi">doi: 10.1073/pnas.1306145110</span> </li> </ul> <br style="clear:both;"> <div class="crossmark-logo"><link media="screen" rel="stylesheet" type="text/css" href="https://crossmark.crossref.org/stylesheets/crossmark_widget.css"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js"></script> <script type="text/javascript" src="http://crossmark.crossref.org/javascripts/crossmark.js"></script> <a id="open-crossmark" href="#" style="padding: 0; background: none; width: 135px;"> <img style="border: 0px;" id="crossmark-icon" src="http://crossmark.crossref.org/images/crossmark_button.png" title="" alt=""> </a> </div> <div class="article abstract-view " itemprop="articleBody"> <span class="highwire-journal-article-marker-start"></span> <h1 id="article-title-1" itemprop="headline">Human resistin, a proinflammatory cytokine, shows chaperone-like activity </h1> <div class="contributors"> <ol class="contributor-list" id="contrib-group-1"> <li class="contributor" id="contrib-1" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Madhuri+Suragani&amp;sortspec=date&amp;submit=Submit">Madhuri Suragani </a> </span> <a id="xref-aff-1-1" class="xref-aff" href="#aff-1"> <sup>a </sup> </a>, </li> <li class="contributor" id="contrib-2" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Varma+D.+Aadinarayana&amp;sortspec=date&amp;submit=Submit">Varma D. Aadinarayana </a> </span> <a id="xref-aff-1-2" class="xref-aff" href="#aff-1"> <sup>a </sup> </a>, </li> <li class="contributor" id="contrib-3" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Aleem+Basha+Pinjari&amp;sortspec=date&amp;submit=Submit">Aleem Basha Pinjari </a> </span> <a id="xref-aff-1-3" class="xref-aff" href="#aff-1"> <sup>a </sup> </a>, </li> <li class="contributor" id="contrib-4" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Karunakar+Tanneeru&amp;sortspec=date&amp;submit=Submit">Karunakar Tanneeru </a> </span> <a id="xref-aff-2-1" class="xref-aff" href="#aff-2"> <sup>b </sup> </a>, </li> <li class="contributor" id="contrib-5" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Lalitha+Guruprasad&amp;sortspec=date&amp;submit=Submit">Lalitha Guruprasad </a> </span> <a id="xref-aff-2-2" class="xref-aff" href="#aff-2"> <sup>b </sup> </a>, </li> <li class="contributor" id="contrib-6" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Sharmistha+Banerjee&amp;sortspec=date&amp;submit=Submit">Sharmistha Banerjee </a> </span> <a id="xref-aff-3-1" class="xref-aff" href="#aff-3"> <sup>c </sup> </a>, </li> <li class="contributor" id="contrib-7" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Saurabh+Pandey&amp;sortspec=date&amp;submit=Submit">Saurabh Pandey </a> </span> <a id="xref-aff-1-4" class="xref-aff" href="#aff-1"> <sup>a </sup> </a>, </li> <li class="contributor" id="contrib-8" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <span class="name" itemprop="name"> <a class="name-search" href="/search?author1=Tapan+K.+Chaudhuri&amp;sortspec=date&amp;submit=Submit">Tapan K. Chaudhuri </a> </span> <a id="xref-aff-4-1" class="xref-aff" href="#aff-4"> <sup>d </sup> </a>, and </li> <li class="last" id="contrib-9"> <span class="name"> <a class="name-search" href="/search?author1=Nasreen+Zafar+Ehtesham&amp;sortspec=date&amp;submit=Submit">Nasreen Zafar Ehtesham </a> </span> <a id="xref-aff-1-5" class="xref-aff" href="#aff-1"> <sup>a </sup> </a> <span class="xref-sep">, </span> <a id="xref-aff-5-1" class="xref-aff" href="#aff-5"> <sup>e </sup> </a> <span class="xref-sep">, </span> <a id="xref-corresp-1-1" class="xref-corresp" href="#corresp-1"> <sup>1 </sup> </a> </li> </ol> <ol class="affiliation-list"> <li class="aff"> <a id="aff-1" name="aff-1"></a> <address> <sup>a </sup>Dr. Reddy’s Institute of Life Sciences, University of Hyderabad, Hyderabad 500046, India; </address> </li> <li class="aff"> <a id="aff-2" name="aff-2"></a> <address> <sup>b </sup>School of Chemistry, University of Hyderabad, Hyderabad 500046, India; </address> </li> <li class="aff"> <a id="aff-3" name="aff-3"></a> <address> <sup>c </sup>School of Life Sciences, Department of Biochemistry, University of Hyderabad, Hyderabad 500046, India; </address> </li> <li class="aff"> <a id="aff-4" name="aff-4"></a> <address> <sup>d </sup>Kusuma School of Biological Sciences, Indian Institute of Technology, New Delhi 110016, India; and </address> </li> <li class="aff"> <a id="aff-5" name="aff-5"></a> <address> <sup>e </sup>Inflammation Biology and Cell Signaling Laboratory, National Institute of Pathology, New Delhi 110029, India </address> </li> </ol> <ol class="fn-track"> <li class="fn-edited-by" id="fn-1"> <p id="p-1">Edited by Linda L. Randall, University of Missouri, Columbia, MO, and approved November 6, 2013 (received for review April 2, 2013) </p> </li> </ol> </div><div class="cb-section cb-views"> <ul class="cit-views primary-views"></ul><ol class="secondary-views cit-views"><li class="abstract active"> <span class="variant-indicator">Abstract </span> </li><li class="notice full-text"> <a href="/content/110/51/20467.full" rel="view-full-text">Full Text</a> </li><li class="author-tab"><a href="#">Authors &amp; Info</a></li><li class="figures-only"> <a href="/content/110/51/20467.figures-only" rel="view-figures-only">Figures</a> </li><li class="si"> <a href="/content/110/51/20467/suppl/DCSupplemental" rel="supplemental-data" class="dslink-supporting-information">SI</a> </li><li class="metrics"><a href="#">Metrics</a></li><li class="notice full-text-pdf"> <a href="/content/110/51/20467.full.pdf" rel="view-full-text.pdf">PDF</a> </li><li class="full-si-pdf"> <a href="/content/110/51/20467.full.pdf?with-ds=yes" rel="view-full-text-pdf-with-supplemental-data">PDF + SI </a> </li></ol><div style="clear:both"></div> </div> <div class="executive-summary significance-box"> <h2>Significance </h2> <p id="p-3">This is a study of human resistin acting as a molecular chaperone. We show that human resistin, a proinflammatory cytokine secreted by human macrophages, is retained inside the cell during endoplasmic reticulum stress and functions like a chaperone to rescue the cell from apoptosis. The study implicates human resistin as a possible molecular link between cellular stress and inflammation during pathological conditions such as infections. </p> </div> <div class="section abstract" id="abstract-2"> <h2>Abstract </h2> <p id="p-4">Resistin, a cysteine-rich adipocytokine, proposed as a link between obesity and diabetes in mice, was shown as a proinflammatory molecule in humans. We earlier reported that human resistin (hRes), a trimer, was resistant to heat and urea denaturation, existed in an oligomeric polydispersed state, and showed a concentration-dependent conformational change. These properties and an intimate correlation of hRes expression with cellular stress prompted us to investigate hRes as a possible chaperone. Here, we show that recombinant human resistin was able to protect the heat-labile enzymes citrate synthase and Nde1 from thermal aggregation and inactivation and was able to refold and restore their enzymatic activities after heat/guanidinium chloride denaturation. Furthermore, recombinant human resistin could bind misfolded proteins only. Molecular dynamics-based association–dissociation kinetics of hRes subunits pointed to resistin being a molecular chaperone. Bis-ANS, which blocks surface hydrophobicity, abrogated the chaperone activity of hRes, establishing the importance of surface hydrophobicity for chaperone activity. Replacement of Phe49 with Tyr (F49YhRes), a critical residue within the hydrophobic patch of hRes, although it could prevent thermal aggregation of citrate synthase and Nde1, was unable to refold and restore their activities. Treatment of U937 cells with tunicamycin/thapsigargin resulted in reduced hRes secretion and concomitant localization in the endoplasmic reticulum. <em>Escherichia coli </em> transformants expressing hRes could be rescued from thermal stress, pointing to hRes’s chaperone-like function in vivo. HeLa cells transfected with hRes showed protection from thapsigargin-induced apoptosis. In conclusion, hRes, an inflammatory protein, additionally exhibited chaperone-like properties, suggesting a possible link between inflammation and cellular stress. </p> </div> <ul class="kwd-group"> <li class="kwd"> <span> <a class="kwd-search" href="/search?fulltext=protein+folding&amp;sortspec=date&amp;submit=Submit&amp;andorexactfulltext=phrase">protein folding </a> </span> </li> <li class="kwd"> <span> <a class="kwd-search" href="/search?fulltext=chaperokine&amp;sortspec=date&amp;submit=Submit&amp;andorexactfulltext=phrase">chaperokine </a> </span> </li> </ul> <div class="section fn-group" id="fn-group-1"> <h2>Footnotes </h2> <ul class="pnas-footnotes"> <li class="corresp" id="corresp-1"> <a class="rev-xref" href="#xref-corresp-1-1">↵ </a> <sup>1 </sup>To whom correspondence should be addressed. E-mail: <a href="mailto:[email protected]&#10; ">[email protected] </a>. </li> </ul> <ul> <li class="fn-other" id="fn-2"> <p id="p-2">Author contributions: N.Z.E. conceptualized and designed the research; M.S., V.D.A., A.B.P., and S.P. performed research; L.G. and K.T. carried out computational analyses; N.Z.E. contributed new reagents/analytical tools; M.S., V.D.A., A.B.P., T.K.C., S.B., and N.Z.E. analyzed data; and M.S. and N.Z.E. wrote the paper. </p> </li> <li class="fn-conflict" id="fn-3"> <p id="p-43">The authors declare no conflict of interest. </p> </li> <li class="fn-other" id="fn-4"> <p id="p-44">This article is a PNAS Direct Submission. </p> </li> <li class="fn-supplementary-material" id="fn-5"> <p id="p-45">This article contains supporting information online at <a class="in-nw" href="/lookup/suppl/doi:10.1073/pnas.1306145110/-/DCSupplemental">www.pnas.org/lookup/suppl/doi:10.1073/pnas.1306145110/-/DCSupplemental </a>. </p> </li> </ul> </div> <span class="highwire-journal-article-marker-end"></span> </div> <div class="metrics" style="display: none;"> <h4 class="altmetric">Online Impact </h4> <div data-doi="10.1073/pnas.1306145110" class="altmetric-embed" data-hide-no-mentions="true" data-badge-details="right" data-badge-type="medium-donut"></div> </div> <div class="social-bookmarking"> <ul class="social-bookmark-links"> <li class="social-bookmarking-item social-bookmarking-item-facebook"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/short/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=FACEBOOK" class="sb-facebook" rel="external-nw" target="_blank" title="[opens in a new window]"> <img src="local/img/misc/icon-facebook.png" alt="Add to Facebook" title="Facebook"> </a> <span class="soc-bm-link-text">Facebook </span> </li> <li class="social-bookmarking-item social-bookmarking-item-twitter"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=TWITTER"> <img src="local/img/misc/icon-twitter.gif" alt="Add to Twitter" title="Twitter"> </a> <span class="soc-bm-link-text">Twitter </span> </li> <li class="social-bookmarking-item social-bookmarking-item-googleplus"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=GOOGLEPLUS&amp;log_only=yes"> <img src="local/img/misc/icon-google.gif" alt="Add to Google+" title="Google+"> </a> <span class="soc-bm-link-text">Google+ </span> </li> <li class="social-bookmarking-item social-bookmarking-item-citeulike"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=CITEULIKE"> <img src="local/img/misc/icon-cite.gif" alt="Add to CiteULike" title="CiteULike"> </a> <span class="soc-bm-link-text">CiteULike </span> </li> <li class="social-bookmarking-item social-bookmarking-item-delicious"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=DEL_ICIO_US"> <img src="local/img/misc/icon-delicious.gif" alt="Add to Delicious" title="Delicious"> </a> <span class="soc-bm-link-text">Delicious </span> </li> <li class="social-bookmarking-item social-bookmarking-item-digg"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=DIGG"> <img src="shared/img/common/social-bookmarking/digg.gif" alt="Add to Digg" title="Digg"> </a> <span class="soc-bm-link-text">Digg </span> </li> <li class="social-bookmarking-item social-bookmarking-item-mendeley"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=MENDELEY"> <img src="local/img/misc/icon-mendeley.gif" alt="Add to Mendeley" title="Mendeley"> </a> <span class="soc-bm-link-text">Mendeley </span> </li> </ul> <p class="social-bookmarking-help"> <a href="/help/social_bookmarks.dtl">What's this? </a> </p> </div> <span id="related-urls"></span> <div class="m-site-recommendation"> <ul> <li class="Biochemistry"> <a href="http://chemistry.pnas.org/"> <img class="chemistry" src="site/images/mChemistry.gif"> </a> </li> </ul> </div> <div id="related-content" class="related-content-custom-linking"></div> <div id="trendmd-suggestions"></div> <script type="text/javascript" src="//trendmd.s3.amazonaws.com/trendmd.min.js"></script> <script type="text/javascript">TrendMD.register({ element: '#trendmd-suggestions', track_id: null} ); </script> </div> <div id="sidebar" class="eq" style="height: 1485px;"> <h3>This Issue </h3> <br> <span class="issue-cover"> <a href="/content/110/51.toc"> <!-- <img src="/content/110/51.cover.gif" class="cover" alt="Cover" width="73" height="98" /> --> </a> </span> <ul class="sub_component"> <li> <span class="caption-date"> December 17, 2013 </span> <br> <span class="caption"> vol. 110 no. 51 </span> <br> <span> <a href="/content/110/51local/masthead.pdf" class="masthead" title="Masthead (PDF)" rel="issue-masthead-pdf" rev="issue-toc">Masthead (PDF) </a> <br> </span> <a href="/content/110/51.toc">Table of Contents </a> </li> </ul> <br style="clear:both;"> <ul id="issue_cover_btn" style="padding-top: 10px;"> <li class="prev_button active sm"> <img src="local/img/misc/btn-arrow-prev.gif" alt="prev"> <a href="/content/110/51/20461.short" title="Previous article" class="previous">prev article </a> </li> <li class="next_button active sm"> <a href="/content/110/51/20473.short" title="Next article" class="next">next article </a> <img src="local/img/misc/btn-arrow-next.gif" alt="next"> </li> </ul> <br style="clear:both;"> <div class="col2-home-col"> <hr> <h3> Don't Miss </h3> <p>PNAS is excited to announce our latest <a href="https://www.overleaf.com/latex/templates/template-for-preparing-your-research-report-submission-to-pnas-using-overleaf/fzcbzjvpvnxn" onclick="window.open('https://www.overleaf.com/latex/templates/template-for-preparing-your-research-report-submission-to-pnas-using-overleaf/fzcbzjvpvnxn','new','');return false">LaTeX template </a> is available on <a href="https://www.overleaf.com/" onclick="window.open('https://www.overleaf.com/','new','');return false">Overleaf </a>. Overleaf allows authors to easily create their submissions using a PNAS-formatted LaTeX template. </p> </div> <div id="commentWrapper"> <div id="comment" class=""></div> </div> <hr> <div class="content-box sidebar-tools art-tools"> <div class="cb-contents"> <h3 class="cb-contents-header"> <span>Article Tools </span> </h3> <div class="cb-section"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span> <i xmlns="http://schema.highwire.org/Application/Descriptor" class="fa fa-rss"> </i>Article Alerts </span> </a></h4> <ol class="collapse menu_body shown"> <li> <a href="/cgi/alerts/ctalert?alertType=citedby&amp;addAlert=cited_by&amp;cited_by_criteria_resid=pnas%3B110%2F51%2F20467&amp;saveAlert=no&amp;return-type=article&amp;return_url=http://www.pnas.org/content/110/51/20467">Alert me when this article is cited </a> </li> <li> <a href="/cgi/alerts/ctalert?alertType=correction&amp;addAlert=correction&amp;correction_criteria_value=110/51/20467&amp;saveAlert=no&amp;return-type=article&amp;return_url=http://www.pnas.org/content/110/51/20467">Alert me if a correction is posted </a> </li> <li class="email"> <a href="/email?gca=pnas%3B110%2F51%2F20467&amp;current-view-path=/content/110/51/20467">Email this article to a colleague </a> </li> </ol> </div> <div class="cb-section" id="cb-art-mgr"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span> <i xmlns="http://schema.highwire.org/Application/Descriptor" class="fa fa-globe"> </i>Export Citation </span> </a></h4> <ol class="collapse menu_body shown" style="display: none;"> <li> <a href="/citmgr?gca=pnas%3B110%2F51%2F20467">Download to citation manager </a> </li> </ol> </div> <div class="cb-section" id="cb-art-dir"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span> <i xmlns="http://schema.highwire.org/Application/Descriptor" class="fa fa-folder-open"> </i>Save for Later </span> </a></h4> <ol class="collapse menu_body shown" style="display: none;"> <li> <a href="/cgi/folders?action=addtofolder&amp;wherefrom=JOURNALS&amp;wrapped_id=pnas%3B110%2F51%2F20467">Add to My File Cabinet </a> </li> </ol> </div> <div class="cb-section" id="cb-art-cpy"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span> <i xmlns="http://schema.highwire.org/Application/Descriptor" class="icon-copyright"> </i> Request Permission </span> </a></h4> <ol class="collapse menu_body shown" style="display: block;"> <li> <a href="site/aboutpnas/rightperm.xhtml">© Request Permission </a> </li> </ol> </div> <div class="cb-section" id="cb-art-soc"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span>Share </span> </a></h4> <ol class="collapse menu_body shown" style="display: block;"> <li> <div class="social-bookmarking"> <ul class="social-bookmark-links"> <li class="social-bookmarking-item social-bookmarking-item-facebook"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/short/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=FACEBOOK" class="sb-facebook" rel="external-nw" target="_blank" title="[opens in a new window]"><i class="fa fa-facebook"></i></a> <span class="soc-bm-link-text">Facebook </span> </li> <li class="social-bookmarking-item social-bookmarking-item-twitter"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=TWITTER"><i class="fa fa-twitter"></i></a> <span class="soc-bm-link-text">Twitter </span> </li> <li class="social-bookmarking-item social-bookmarking-item-googleplus"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=GOOGLEPLUS&amp;log_only=yes"> <img src="local/img/misc/icon-google.gif" alt="Add to Google+" title="Google+"> </a> <span class="soc-bm-link-text">Google+ </span> </li> <li class="social-bookmarking-item social-bookmarking-item-citeulike"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=CITEULIKE"> <img src="local/img/misc/icon-cite.gif" alt="Add to CiteULike" title="CiteULike"> </a> <span class="soc-bm-link-text">CiteULike </span> </li> <li class="social-bookmarking-item social-bookmarking-item-delicious"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=DEL_ICIO_US"> <img src="local/img/misc/icon-delicious.gif" alt="Add to Delicious" title="Delicious"> </a> <span class="soc-bm-link-text">Delicious </span> </li> <li class="social-bookmarking-item social-bookmarking-item-digg"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=DIGG"> <img src="shared/img/common/social-bookmarking/digg.gif" alt="Add to Digg" title="Digg"> </a> <span class="soc-bm-link-text">Digg </span> </li> <li class="social-bookmarking-item social-bookmarking-item-mendeley"> <a href="/external-ref?tag_url=http://www.pnas.org/cgi/content/long/110/51/20467&amp;title=Human%20resistin%2C%20a%20proinflammatory%20cytokine%2C%20shows%20chaperone-like%20activity+--+Suragani%20et%20al.%20110%20%2851%29%3A%2020467+--+PNAS&amp;doi=10.1073/pnas.1306145110&amp;link_type=MENDELEY"> <img src="local/img/misc/icon-mendeley.gif" alt="Add to Mendeley" title="Mendeley"> </a> <span class="soc-bm-link-text">Mendeley </span> </li> </ul> <p class="social-bookmarking-help"> <a href="/help/social_bookmarks.dtl">What's this? </a> </p> </div> </li> </ol> </div> </div> </div> <br style="clear:both"> <span class="footnote"> <hr> <span class="slug-metadata-note ahead-of-print"> Published online before print <span class="slug-ahead-of-print-date">November 26, 2013 </span>, doi: <span title="10.1073/pnas.1306145110" class="slug-doi">10.1073/pnas.1306145110 </span> </span> <br> <abbr title="Proceedings of the National Academy of Sciences" class="slug-jnl-abbrev"> PNAS </abbr> <span class="slug-pub-date"> December 17, 2013 </span> <span class="slug-vol"> vol. 110 </span> <span class="slug-issue"> no. 51 </span> <span class="slug-pages"> 20467-20472 </span> </span> <div class="menu_list"> <p class="expand menu_head"><a style="display:block" href="#" title="">Classifications </a></p> <ul class="subject-headings collapse menu_body shown"> <li>Biological Sciences <ul class="subject-sub-headings last-child"> <li> <a class="tocsection-search" href="/search?tocsectionid=Biochemistry&amp;sortspec=date&amp;submit=Submit">Biochemistry </a> </li> </ul> </li> </ul> </div> <br style="clear:both;"> <hr> <div class="access"> <div class="content-box" id="article-views"> <div class="cb-contents"> <h3 class="cb-contents-header"> <span>Access </span> </h3> </div> </div> <hr> </div> <div class="video"></div> <div class="pnasfigures"> <div class="content-box sidebar-tools"> <div class="cb-contents"> <div class="cb-section" id="cb-art-featuredfigs"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span>Figures </span> </a></h4> <ol class="collapse menu_body shown" style="display: block;"> <li> <div id="featured-figure"> <div xmlns="" class="col-2-featured-figure"> <a href="/content/110/51/20467/F1.expansion.html"> <!-- <img alt="Fig. 1." src="/content/110/51/20467/F1.small.gif" width="175"></img> --> </a> <span class="featured-fig-label">Fig. 1. <a href="/content/110/51/20467.figures-only">Browse All Figures </a> </span> </div> </div> </li> </ol> </div> </div> </div> </div> <div class="content-box sidebar-tools other-arts"> <div class="cb-contents"> <h3 class="cb-contents-header"> <span>Other Articles </span> </h3> <div class="cb-section" id="cb-art-cit"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span>Citing This Article </span> </a></h4> <ol class="collapse menu_body shown" style="display: none;"> <li> <a href="/content/110/51/20467?cited-by=yes&amp;legid=pnas;110/51/20467#cited-by" id="cb-hw-citing-articles">Load citing article information </a> </li> <li> <a href="/cgi/crossref-forward-links/110/51/20467" rel="external-nw" id="cb-crossref-citing-articles" target="_blank" title="[opens in a new window]">Citing articles via CrossRef </a> </li> <li> <a href="/external-ref?access_num=%2Fpnas%2F110%2F51%2F20467&amp;link_type=ISI_CITING&amp;accnum_type=native" rel="external-nw" id="cb-isi-citing-articles" target="_blank" title="[opens in a new window]">Citing articles via Web of Science </a> </li> <li> <a href="/external-ref?access_num=http://www.pnas.org/content/110/51/20467.abstract&amp;link_type=GOOGLESCHOLAR">Articles citing this article </a> </li> </ol> </div> <div class="cb-section" id="cb-art-gs"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span>Google Scholar </span> </a></h4> <ol class="collapse menu_body shown" style="display: none;"> <li> <a href="http://scholar.google.com/scholar?q=%22author%3ASuragani%20author%3AM.%22">Articles by Suragani, M. </a> </li> <li> <a href="http://scholar.google.com/scholar?q=%22author%3AEhtesham%20author%3AN.Z.%22">Articles by Ehtesham, N. Z. </a> </li> <li> <a href="/external-ref?access_num=http://www.pnas.org/content/110/51/20467.abstract&amp;link_type=GOOGLESCHOLARRELATED">Search for related content </a> </li> </ol> </div> <div class="cb-section" id="cb-art-pm"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span>PubMed </span> </a></h4> <ol class="collapse menu_body shown" style="display: none;"> <li> <a href="/external-ref?access_num=24282299&amp;link_type=PUBMED">PubMed citation </a> </li> <li> <a href="/external-ref?access_num=Suragani%20M&amp;link_type=AUTHORSEARCH">Articles by Suragani, M. </a> </li> <li> <a href="/external-ref?access_num=Ehtesham%20NZ&amp;link_type=AUTHORSEARCH">Articles by Ehtesham, N. Z. </a> </li> <li> <div id="cb-entrez-links-placeholder"> <a href="/entrez-links/24282299"></a> </div> </li> </ol> </div> <div class="cb-section" id="cb-art-dir"> <h4 class="cb-section-header expand menu_head"><a style="display:block" href="#" title=""> <span>Similar to This Article </span> </a></h4> <ol class="collapse menu_body shown" style="display: none;"> <li> <a href="/search?qbe=pnas%3B1306145110&amp;citation=Suragani%20et%20al.%20110%20%2851%29:%2020467&amp;submit=yes">Similar articles in this journal </a> </li> <li> <a href="/external-ref?access_num=pnas%3B110%2F51%2F20467&amp;link_type=ISI_RELATEDRECORDS" id="cb-isi-similar-articles">Similar articles in ISI </a> </li> <li> <a href="/external-ref?access_num=24282299&amp;link_type=MED_NBRS">Similar articles in PubMed </a> </li> </ol> </div> </div> </div> <hr> <div id="semantics-article"></div> <div id="semantics-terms"></div> <div class="button blue"> <a href="http://www.pnascentral.org">submit an article </a> </div> </div> </div> <div id="footer"> <div id="icon_nas"> <a href="http://www.nasonline.org/" onclick="window.open('http://www.nasonline.org/','new','');return false"> <img src="local/img/nav/icon-nas.png" alt="NAS, National Academy of Sciences" width="36" height="35"> </a> </div> <div id="icon_highwire"> <a href="http://highwire.stanford.edu/" onclick="window.open('http://highwire.stanford.edu/','new','');return false"> <img height="30" width="30" alt="HighWire Press, Stanford University" src="local/img/nav/icon-highwire.png"> </a> </div> <div id="icon_pnas_footer_glenco_logo"> <a href="http://glencoesoftware.com/" onclick="window.open('http://glencoesoftware.com/','new','');return false"> <img src="local/img/nav/glencoe_logo_small.png" alt="Glencoe"> </a> </div> <div id="icon_pnas"> <img src="local/img/nav/footer-pnas.png" alt="PNAS" width="78" height="23"> </div> <br style="clear:both"> <div id="footer_content">PNAS Online is distributed with the assistance of <br> <a href="http://highwire.org/" onclick="window.open('http://highwire.org/','new','');return false">HighWire Press® </a> | Online ISSN 1091-6490 <br> Video content is hosted by <a href="http://glencoesoftware.com/" onclick="window.open('http://glencoesoftware.com/','new','');return false"> Glencoe Software, Inc </a>. <br>Copyright © 2016 <a href="http://www.nasonline.org/" onclick="window.open('http://www.nasonline.org/','new','');return false">National Academy of Sciences </a>. Website by <div id="creditObject"> </div> <a href="http://www.bostoninteractive.com" onclick="window.open('http://www.bostoninteractive.com','new','');return false">Boston Interactive </a> </div> <div class="horizontal_links pipe"> <ul> <li class="first"> <a href="site/misc/contact.xhtml">Contact </a> </li> <li> <a href="/cgi/feedback">Feedback </a> </li> <li> <a href="site/subscriptions/index.xhtml">Subscribe </a> </li> <li> <a href="site/media/journalist.xhtml">For the Press </a> </li> <li> <a href="site/misc/masthead.xhtml">Editorial Board </a> </li> <li> <a href="site/miscsitemap.xhtml">Site Map </a> </li> <li> <a href="site/misc/terms.xhtml">Privacy/Legal </a> </li> </ul> <ul> <li class="first" style="float:right;"> For an alternate route to PNAS: <a href="http://intl.pnas.org" onclick="window.open('http://intl.pnas.org','new','');return false" title="http://intl.pnas.org">http://intl.pnas.org </a> </li> </ul> </div> </div> </div> </div> </div><div style="display: none;" id="hippio-template"></div><div id="fancybox-tmp"></div><div id="fancybox-loading"><div></div></div><div id="fancybox-overlay"></div><div id="fancybox-wrap"><div id="fancybox-outer"><div class="fancybox-bg" id="fancybox-bg-n"></div><div class="fancybox-bg" id="fancybox-bg-ne"></div><div class="fancybox-bg" id="fancybox-bg-e"></div><div class="fancybox-bg" id="fancybox-bg-se"></div><div class="fancybox-bg" id="fancybox-bg-s"></div><div class="fancybox-bg" id="fancybox-bg-sw"></div><div class="fancybox-bg" id="fancybox-bg-w"></div><div class="fancybox-bg" id="fancybox-bg-nw"></div><div id="fancybox-content"></div><a id="fancybox-close"></a><div id="fancybox-title"></div><a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a><a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a></div></div><div class="ui-dialog ui-widget ui-widget-content ui-corner-all" tabindex="-1" role="dialog" aria-labelledby="ui-dialog-title-crossmark-dialog" style="display: none; z-index: 3999; outline: 0px;"><div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"><span class="ui-dialog-title" id="ui-dialog-title-crossmark-dialog">&nbsp;</span><a href="#" class="ui-dialog-titlebar-close ui-corner-all" role="button"><span class="ui-icon ui-icon-closethick">close</span></a></div><div id="crossmark-dialog" style="" class="ui-dialog-content ui-widget-content"> <iframe id="crossmark-dialog-frame" frameborder="0"></iframe> </div></div><div id="crossmark-tooltip-130" class="crossmark-tooltip" style="left: 412.997px; top: 10.0795px; display: none;"><div class="cmtttop"></div><div class="cmttmid"><p>Click to get updates and verify authenticity.</p></div><div class="cmttbot"></div></div></body></html>
Credit regex
2016-09-05T11:31:01.000Z
^(`{3}.*[\n\r][^]*?^`{3})
```javascript const foo = function(){ console.log('hello') } ```
markdown multiline code
2017-09-27T03:50:00.000Z
在方括号中使用连字符来指定字符集的范围。 在方括号中的字符集不关心顺序。
[tT]he
The car parked in the garage.
[x1-x2] /[x1x2...xn] char set
2020-06-25T10:04:51.000Z
# Array Expressions Expresiones validas de array para el atributos Value de los componentes tipo texto del editor grafico de VeriTran
#[NCRLTBUIOSFAGKP]\{(\d+):(#[NCRLTBUIOSFAGKP]\{\d+(?:;F)?\}|S|C|R)(:\d+)?\}
Ejemplos Válidos: Ejemplo 1: #A{4:#S{520}:1} Ejemplo 2: #A{4:#S{520;F}:2} Ejemplo 3: #A{4:#S{520}:5} Ejemplo 4: '#A{4:#S{520;F}:8}'!='' Ejemplo 5: '#A{4:#S{520}:7}'!='' Ejemplo 6: '#A{4:#S{520;F}:4}'=='A' Ejemplos Inválidos: Ejemplo 1: #A{354:#S{500;F}:1:F} Ejemplo 2: #A{354;#S{500;F};1} Ejemplo 3: #S{500
Array Expressions
2022-01-09T00:50:28.000Z
[^]+\[Input\][^]+(NewAutoController)[^]+\[.*\]
[Console] No = いいえ Yes = はい FailedLogin = 現在ログインすることができません。後ほどもう一度お試しください。 OfflineMode = オフラインでプレイしたい場合、Xbox Liveの機能は使用できず、データはセーブされません。 [Input] ControllerDisconnect = コントローラーが切断されました。コントローラーを再接続して再開しましょう。 NewAutoController = 新しい入力: [levels] FreeRoamDesc = お好きにどうぞ MountainPeak = 山の頂上 Act = 幕 Chapter = チャプター [cheats] disallowed_outside_editor = エディター外 ^\[Input\] ^\[\w+\] [^]+\[levels]
置換
2018-09-26T11:34:30.000Z
^(/\*\n.*<s(?!amplecode>\n.*<abstract>\n[\S\s]*? </abstract>\n.*</samplecode>\n \*/\n).*)$
/* <samplecode> <abstract> Extensions Another Line </abstract> </samplecode> */ d
Multiline 2020 DevPubs Header
2020-07-18T22:35:28.000Z
([A-Z])\w+
RegExr v3 was created by gskinner.com, and is proudly hosted by Media Temple. Edit the Expression & Text to see matches. Roll over matches or the expression for details. PCRE & Javascript flavors of RegEx are supported. The side bar includes a Cheatsheet, full Reference, and Help. You can also Save & Share with the Community, and view patterns you create or favorite in My Patterns. Explore results with the Tools below. Replace & List output custom results. Details lists capture groups. Explain describes your expression in plain English.
Demo
2018-05-25T03:46:46.000Z
iCal parser
BEGIN:VEVENT DTEND;VALUE=DATE:(.*?) DTSTART;VALUE=DATE: (.*?) UID:(.*?) SUMMARY:(.*?) END:VEVENT
BEGIN:VCALENDAR PRODID;X-RICAL-TZSOURCE=TZINFO:-//Airbnb Inc//Hosting Calendar 0.8.8//EN CALSCALE:GREGORIAN VERSION:2.0 BEGIN:VEVENT DTEND;VALUE=DATE:20221105 DTSTART;VALUE=DATE: 20220831 UID:[email protected] SUMMARY:Airbnb (Not available) END:VEVENT BEGIN:VEVENT DTEND;VALUE=DATE:20230103 DTSTART;VALUE=DATE:20221227 UID:[email protected] SUMMARY:Airbnb ( Not available) END:VEVENT BEGIN:VEVENT DTEND;VALUE=DATE:20230311 DTSTART;VALUE=DATE:20230212 UID:[email protected] SUMMARY:Airbnb (Not available) END:VEVENTDATE BEGIN:VEVENT= DTEND :20230903 DTSTART;VALUE=DATE:20230701 UID:[email protected] SUMMARY:Airbnb (Not available) END:VEVENT END:VCALENDAR
iCal
2022-09-02T19:09:44.000Z
Matches the following UK post code formats: - - A9 9AA - A9A 9AA - A99 9AA - AA9 9AA - AA9A 9AA - AA99 9AA
([A-Za-z][A-Ha-hK-Yk-y]?[0-9][A-Za-z0-9]? ?[0-9][A-Za-z]{2}|[Gg][Ii][Rr] ?0[Aa]{2})
1 Test Street Test Town, AA1 1AA
UK Postcode
2019-04-05T13:46:00.000Z
I used this for N++ find/replace. Find this value and replace with -$1
\((\$[\d,\.]*)\)
($371,157)
Find negative currency numbers in parenthesis
2015-09-21T19:14:57.000Z
Friday, 23 October
([a-zA-Z]+)(, )(\d{1,2})( )([a-zA-Z]+)
Friday, 3 October
DDDD, dd MMMM
2015-10-23T14:11:31.000Z