Community Patterns

19

Get path from any text

Created·2023-01-31 14:38
Updated·2023-07-23 20:17
Flavor·PCRE2 (PHP)
Recommended·
Get path (windows style) from any type of text (error message, e-mail corps ...), quoted or not. THIS IS THE SINGLE LINE VERSION ! If you want understand how it work or edit it, go https://regex101.com/r/7o2fyy Relative path are not supported The goal is to catch what "Look like" a path. See the limitations UNC path and prefix path like //./], [//?/] or [//./UNC/] are allowed some url path like [file:///C:/] or [file://] are allowed Catch path quoted with ["] and [']. But these quotes are include with the catch Quoted path is not concerned by limitations Limitations : (only unquoted path) [dot] and [space] is allowed, but not in a row [dot+space] or [space+dot at end of file name isn't catched INSIDE A NAME FILE (or last directory if it is a path to a directory) : [comma] is not supported (it stop the catch) after a first [dot], any [space] stop the catch after a [space], catch is stoped if next character is not a [letter], [digit] or [-] so, double [space] stop the catch Compatibility compatible PCRE, PCRE2 AutoHotkey : don't forget to escape "%" in "`%" /!\ Powershell and .Net /!\\ : this regex need some modification to be interpreted by powershell. You have to replace each (?&CapturGroupName) by \k. Use this powershell code to do this replacement : ` $powershellRegex = @' [Put here the regex to replace (?&CapturGroupName) with \k] '@ -replace '\(\?&(\w+)\)', '\k' ` This example code must return : [Put here the regex to replace \k with \k]
Submitted by nitrateag
2

Detect RGB/RGBA colors in CSS

Created·2022-05-31 10:30
Flavor·PCRE2 (PHP)
JS function to convert RGB(A) to HEX color for single values: /** @param {string} color the RGB(A) color @return {string} the HEX color */ function rgba2hex(color) { const rgb = color.replace(/,\s+/g, ',').match(/^rgba?\((.\d]+)[, ]+([.\d]+)[, ]+([.\d]+)[, ]?([.\d]+)?\)$/i); let hex = (parseInt(rgb[1], 10) | 1 [.\d]+)[, ]+(?[.\d]+)[, ]+(?[.\d]+)(?:\s?[,\/]\s?(?[.\d]+%?))?\)/i', static function (array $matches) { $matches['r'] = ceil($matches['r']); $matches['g'] = ceil($matches['g']); $matches['b'] = ceil($matches['b']); if (isset($matches['a'])) { if (str_ends_with($matches['a'], '%')) { // 2.55 is 1% $matches['a'] = 2.55 * (float) substr($matches['a'], -1); } else { if ($matches['a' === '.') { $matches['a'] = '0' . $matches['a']; } $matches['a'] = 255 * (float) $matches['a']; } $matches['a'] = ceil($matches['a']); $hex = dechex(($matches['r'] << 24) | ($matches['g'] << 16) | ($matches['b'] << 8) | $matches['a']); return '#' . str_pad($hex, 8, '0', STR_PAD_LEFT); } $hex = dechex(($matches['r'] << 16) | ($matches['g'] << 8) | $matches['b']); return '#' . str_pad($hex, 6, '0', STR_PAD_LEFT); }, $css ); } Test: $css = <<<'CSS' color: rgb(34, 12, 64, 0.6); color: rgba(34, 12, 64, 0.6); color: rgba(34, 12, 64, .6); color: rgb(34 12 64 / 0.6); color: rgba(34 12 64 / 0.3); color: rgb(34.0 12 64 / 60%); color: rgba(34.6 12 64 / 30%); color: rgba(0, 255, 255); color: rgba(0, 255, 255); color: rgba(0, 255, 255, .5); color: rgba(0, 255, 255, 0.5); color: rgba(0 255 255 / 0.5); CSS; echo rgb2Hex($css); Result: color: #220c4010; color: #220c4010; color: #220c4010; color: #220c4010; color: #220c4008; color: #220c4000; color: #230c4000; color: #00ffff; color: #00ffff; color: #00ffff0d; color: #00ffff0d; color: #00ffff0d;
Submitted by WinterSilence

Community Library Entry

1

Regular Expression
Created·2024-08-19 11:40
Flavor·PCRE2 (PHP)

/
(?:^|[^\d])[0]*(?<serial>1234)(?:[^\d]|$)
/
gm
Open regex in editor

Description

Will match strings with the desired number. For example 1234 but not 12345 or 41234. Will ignore leading zeros so 01234 for example will match.

Important. Replace 1234 in regex with the actual searched for number

Submitted by anonymous