Perl-Compatible Regular Expressions: regular expressions as understood by Perl; also, a library offering PCRE to other programs.
-1
votes
1answer
28 views
PHP extracting random number from source code failed [closed]
<?php
$cookie ="mycookies";
$url = "http://www.example.com/path_to_script.php";
$num = "";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, ...
0
votes
0answers
14 views
Nginx rewrite modify url regular expressions (PCRE)
Need to convert URLs like:
mysite.com/UserName
...
mysite.com/UserName/?foo=dododo
...
mysite.com/v?m=dododo
to URL like this:
mysite.com/?app=UserName
...
mysite.com/?app=UserName&foo=dododo
...
1
vote
2answers
63 views
Can you explain/simplify this regular expression (PCRE) in PHP?
preg_match('/.*MyString[ (\/]*([a-z0-9\.\-]*)/i', $contents, $matches);
I need to debug this one. I have a good idea of what it's doing but since I was never an expert at regular expressions I need ...
1
vote
2answers
38 views
Regex - And and Not match
Trying to get this regex working.
[a-z0-9-\.]+(?!.in-addr.arpa*$)
sample -
sdfgsed.co.in //shall match
1.1.1.1.in-addr.arpa //shall not match
fgsagf.co.ru //shall match
agfasfdg21.cn //shall ...
0
votes
2answers
46 views
How to extract string separated by comma with PHP?
I need extract a string separated by comma or comma and space.
Example:
<?php
//regexp
$regexp = "/(select\s+(?<name>[a-z0-9]+)\s+(?<values>[^\d]+[a-z0-9]+\s*(\s*,|\s*$)))/";
...
0
votes
1answer
28 views
GCC compiler is unable to find pcre.h
I am trying to compile a C program which uses regexes on FreeBSD. I have checked in /usr/local/include and the file pcre.h is definitely there.
However, no matter what I do, I get the following ...
0
votes
1answer
45 views
Regex - Match seperated numbers [duplicate]
Matching the regex /^(?:\.(\d{3}))*$/s on .234.567 produces the following output:
array (size=2)
0 =>
array (size=1)
0 => string '.234.567' (length=8)
1 =>
array (size=1)
...
2
votes
2answers
41 views
Is it possible to AND two separate lookaround/zero-width assertions (i.e. lookbehind/look-behind) in a regular expression?
I'm using Perl for this regular expression question, but it would be good to know if it applies to PHP, as well.
I need to comment out all print statements or all things that start with print in a ...
0
votes
1answer
33 views
How to check for two words ('goat' and 'sheep') with preg_match in PHP?
How do I check for two words (example 'sheep' and 'goat') with preg_match in PHP?
Example:
if (!preg_match(goat|sheep)) header(' Location: / ');
Thanks!
2
votes
0answers
59 views
Regular Expressions (Normal OR Nested Brackets)
So I'm completely new to the overwhelming world of Regex. Basically, I'm using the Gedit API to create a new custom language specification (derived from C#) for syntax-highlighting (for DM from ...
0
votes
0answers
16 views
How to interpret this PCRE for Person Name
I got the following PCRE from https://www.owasp.org/index.php/OWASP_Validation_Regex_Repository. Apparently it is a reasonable pattern for a person's name, but I'm having difficulty deciphering it.
...
0
votes
1answer
24 views
A repository of common PCRE patterns?
Does anyone know of a repository for common PCRE patterns? I'm not so interested in the PCRE syntax. I am more interested in a good set of rules for what's commonly allowed in fields such as:
...
0
votes
0answers
49 views
PCRE open-ended range & partial matching
Using PCRE from C, given the regex /^a{1,3}$/ and the string "aa", pcre_dfa_exec() returns 1 indicating that the string matches.
What I need is to be able to determine that the string does not ...
0
votes
2answers
35 views
How to exclude characters from a RegEx pattern with category property codes?
There is a number of category property codes (see part "Unicode character properties"), that can be used for a Perl-compatible Regular Expression (PCRE)
I defined a regex pattern (named subpattern), ...
-1
votes
2answers
44 views
Make a multiple delimiter REGEX for preg_split
I need to split multiple lines in multiple files by different delimiters. I think preg_split should do the job but i never worked with PCRE REGEX stuff. I could also change all my delimiters to be ...
0
votes
1answer
66 views
nginx location regex - character class and range of matches
I am trying to setup a regex for the path /s/<4-6 character string here> where I capture the 4-6 character string as $1.
I tried using the following two entries, but both fail
location ~ ...
0
votes
1answer
57 views
What does this regular expression do exactly?
The PHP code is:
$cleanedVer = preg_replace('/[^0-9,.,a-z,A-Z-]/','',$someVer);
It cleans the version sting but sometimes cleans too much info.
I'm not sure what this PCRE regular expression do to ...
0
votes
1answer
56 views
preg_match_all in php produces different results with database string
I am using preg_match_all in php to construct tokens from a string written in a DSL. When I hardcode a test string into my PHP code and run it, it all works. However, when I read the same string from ...
1
vote
3answers
32 views
PCRE regex multi-line match help needed
I am having trouble matching the pattern, "This program cannot be run" whenever the phrase is broken over multiple lines, e.g.:
This program cannot be run
T
his program cannot be run
Thi
s program ...
0
votes
2answers
35 views
PHP preg_replace surrounded by pipes?
I have just come across a regular expression in the WordPress core which intrigues me...
I have found regular expressions like this before and wondered about them, but they have worked so I have not ...
0
votes
2answers
48 views
RegExp: is there way to pass string to regexp without ecranisation?
Is there way to pass some string to regexp and not worry about ecranisation of special chars.
For example I wont to find line which starts with words "\north+west\", as you can see "\n" and "h+" ...
0
votes
2answers
49 views
perl style regex - get the nth(4th) word in a piped sentence - a|b|c|d|e|f|g|h|i|j|k|n|o
I am very new in perl style regex. Can somebody suggest me the get the nth word in a piped sentence.
Sentence:
ab|gf|fdg|hjtyt|ew|gf|jh|edf|gfd|fd|fd|jvf|df|ds|s|gf
I wanted to get here 4th word: ...
0
votes
0answers
33 views
Mark non-spacing (MNS) Unicode category and \b
In PCRE non-spacing mark characters cause word boundary. As a result Åström string has 2 \b positions and Åström (decomposed characters) has 6 \b positions. Is it an intended behavior or a ...
3
votes
1answer
152 views
PHP: Converting text links to anchor tags
I am pulling in RSS feeds and using DOMXPath to convert all existing anchor tags to custom tags that look like this for various reasons:
...
1
vote
1answer
59 views
PCRE Regex help needed
I am having trouble writing a perl compatible regex to match a few different things when there is a gap between each condition. It makes more sense when I explain what I want it to find
Conditions
...
0
votes
2answers
33 views
How to match a string until the first instance of a character that does not follow another specific character
Related question: How can I use regex to match a character (') when not following a specific character (?)?
I'm parsing a log using regex (PHP PCRE library), and trying to extract a URL from it. ...
0
votes
1answer
68 views
preg_grep matching incorrectly?
My code:
$q = array('r%and_dy', 'cat09', '##$%%^');
$result = preg_grep('/[a-zA-Z0-9]+/', $q);
print_r($result);
Using the same regular expression with javascript will only match 'cat09', but in ...
16
votes
4answers
412 views
Extra characters on the end of replaced text
In PHP and Java, I applied /^[^\pL]*|[^\pL]*$/ to -A- and I got *A**. I applied a symmetric pattern and got an asymmetric result! Why? I wonder why its output is not *A*?
Pattern says that every ...
0
votes
2answers
127 views
How to set a (UTF8) modifier for RegEx of a RegEx Route in Zend Framework 2?
I'm having troubles with (german) special characters in URIs and want to try to resolve it with a RegEx Route and a PCRE pattern modifier for UTF-8 u.
'router' => array(
'routes' => array(
...
4
votes
1answer
108 views
Missing characters using Text.Regex.PCRE to parse web page title
I recently made a website that needs to retrieve talk titles from TED website.
So far, the problem is specific to this talk: Francis Collins: We need better drugs -- now
From the web page source, I ...
0
votes
4answers
90 views
regexp match within a log file, return dynamic content above and below match
I have some catchall log files in a format as follows:
timestamp event summary
foo details
account name: userA
bar more details
timestamp event summary
baz details
account name: userB
qux more ...
4
votes
4answers
188 views
Would compiling a regex into native assembly be faster than PCRE or other Regex engines? [closed]
I was thinking about an improvement. I'm currently doing lots of text processing of log files.
I don't mean to say PCRE is slow/fast or any other implementation for that matter.
The language I'm ...
3
votes
2answers
145 views
Visual C++ 2012 and PCRE
I'm new to C++ but I need to use PCRE library in my project. I've already downloaded PCRE 8.20 for windows from this page. Now how can I tell Visual Studio where the library is so that #include ...
6
votes
2answers
107 views
split string separated by commas and equal sign in php with escaping
I want to split a string like this:
colors = blue, green, yellow, kinda violet\, not sure,purple\=almost magenta
With regular expression so the result should be
colors
blue
green
yellow
kinda ...
1
vote
1answer
37 views
How can I extract RFC1123 hostnames from a string using regular expressions?
I'm looking for a regular expression that would match anything that could be a valid RFC1123 hostname in a string that can contain anything. The idea is to extract everything that could possibly be a ...
2
votes
1answer
51 views
Recursive regex not matching template blocks
I'm trying to understand more about regex and in this case the recursion you can do in a regular expression.
I'm trying to match a nested block of {foreach $VAR} ... {/foreach}. But for some reason ...
1
vote
4answers
51 views
RegEx to match some wrapped texts
Consider following text:
aas( I)f df (as)(dfdsf)(adf).dgdf(sfg).(dfdf) asdfsdf dsfa(asd #54 54 !fa.) sdf
I want to retrive text between parenthesis, but adjacent parentheses should be consider a ...
1
vote
2answers
76 views
regex - get all attributes of an element
I have a string that contains some html entities
<listing name="name goes there" phone="321321" >Text description</listing>
<anytag name="another name" phone="any phone" attr1="value ...
0
votes
1answer
40 views
PCRE matching a url with or without args
Say a given URL of a JS/CSS file will sometimes ends with '?v=xyz' or such.
How do I capture both cases in PCRE, that is, for
"/my/path/lib.js"
The following
"\.[js|css]$"
Works just fine. And ...
0
votes
0answers
94 views
While I complied MongoDB 2.2.3 on CentOS 6.3 x86_64,I met an error
I met a problem while I was compiling MongoDB 2.2.3 on CentOS 6.3 x86_64.
I prepare a CentOS 6.3 x86_64 server using DVD as yum resource.Then I begin to install MongoDB 2.2.3,what I did as below:
yum ...
3
votes
1answer
112 views
pcre C API only return first match
#include <stdio.h>
#include <string.h>
#include <pcre.h>
#define OVECCOUNT 30
#define SRCBUFFER 1024*1024
int main(int argc, char **argv){
pcre *re;
const char *error;
int ...
3
votes
4answers
77 views
Strange answer using PCRE Regex
I'm using the PCRE regex lib in C (http://www.pcre.org/) to parse and match my HTML string. To simplify my question, suppose I got the source string: "aaa: bbbb:", and my pattern: a(.*?):|b(.*?):, ...
1
vote
0answers
88 views
PHP PCRE - match different subpattern name depending on context
As the title states, I started thinking about how to match, for example, 2 different subpatterns in a regex applied on a string, on the condition that if the content has only numbers it will be ...
9
votes
1answer
187 views
Minify/compress CSS with regex?
In PHP can you compress/minify CSS with regex (PCRE)?
(As a theoretical in regex. I'm sure there are libraries out there that do this well.)
Background note: After spending hours writing an answer ...
1
vote
2answers
89 views
Make a non-greedy RegEx in backward direction to behave the same like in forward direction
This pattern:
/a+?b+?/
Against the following string:
aaaaaabbbbbb
Matches:
aaaaaab
We see that the non-greedy behaves different in backward/left direction (takes all) and forward/right ...
1
vote
1answer
49 views
Regex negative character class and dot-asterisk
I need to get the following regular expression to work but having issues. Yes, it's parsing HTML. No, there's no better option to use.
This is the regex:
test(.*)\/[^s].*(=|\/|Z)
I'm using the ...
1
vote
1answer
138 views
How to use non-capturing groups in grep?
This answer suggests that grep -P supports the (?:pattern) syntax, but it doesn't seem to work for me (the group is still captured and displayed as part of the match). Am I missing something?
I am ...
0
votes
3answers
76 views
Recursively rename directories and files based on a regular expression
I am trying to strip all "?" in file names in a given directory who was got more subdirectories and they have subdirectories within it. I've tried using a simple perl regex script with system calls ...
1
vote
1answer
83 views
Grep for <?php after blank line
How can I grep (or something similar) after files which has a blank line followed by <?php?
I tried without success:
grep -irn '(?<=.\r)\r<?php' *
I read in some posts that grep doesn't ...
0
votes
2answers
34 views
improve regex pcre php
In my project (php), I got some regexs(pcre) like this one :
preg_match('/[\s^0-9]{0,1}([0-9]{2})[\s^0-9]{0,1}/',$chanson['nom'],$resultPreg1)
This regex catch two numbers who can be delimited or ...



