Regular expression pattern matching function for the PHP programming language

learn more… | top users | synonyms

0
votes
1answer
12 views

PHP preg_match URL replacement usage

I have two URL patten structure in $url news.oxo.com/site/data/html_dir/2013/05/25/2013052500007.html salute.com/arti/society/health/588947.html and want to change those to ...
-1
votes
0answers
17 views

PHP preg_match to find all _(“text to translate”) in PHP files [closed]

Instead of using POedit, I'd like to extract all my strings to be translated using PHP. I only use the nonplural form - _("Text to translate") but I can't figure out a correct regex that will get the ...
2
votes
1answer
15 views

Regex find string inside json string on html page

I have some html code, which also includes a javascript tag and some json inside. The json object looks like this: var data = {"service_notice":"111111-aa-bb-222222"} I would like to extract the ...
0
votes
1answer
37 views

Weird behavior in regular expression replacement [duplicate]

I'm doing a regular expression for a linking system, and the syntax looks like this: <a href=":login">Login</a> This tells the system that this link should be converted to JS or an HTML ...
0
votes
2answers
23 views

PHP pregmatch utf8 (scandinavian chars)

I'm having a problem modifying an old preg_match code. The current code is if (empty($name) || preg_match('#[^\w-\'\"\s]#si', $name)) { But this blocks utf8 signs, in my case å æ ø. Whats the ...
-1
votes
1answer
26 views

complex regex help preg_match php [closed]

I have this regex preg_match_all('/(?<=|^)(?:[0-9]{1,3}(?:,| ?[0-9]{3})*(?:.[0-9]*)?|[0-9]{1,3}(?:\.?[0-9]{3})*(?:,[0-9] ​*)?)(?:\ ...
0
votes
2answers
27 views

Groups and quantifiers {m,n}

Is it possible to use quantifiers with groups? For example. I want to match something like: 11% 09% aa% zy% g1% 8b% ... The pattern is: 2 letters or numbers (mixed, or not) and a % ending the ...
0
votes
1answer
32 views

Match letters and numbers, doesn't match numbers only [closed]

I need to match just numbers and letters but I don't want to match numbers only. So, "a1", should match, so does "1a". "a" should match. "1", "1111", "987", etc shouldn't match. <?php echo ...
2
votes
1answer
29 views

preg_match_all pattern creation

How can i properly format regex pattern to find matches for strings contained between (* ''' and ''') from ex. something like this: Lorem ipsum dolor sit amet, *'''Consectetur adipiscing elit'''. ...
0
votes
1answer
33 views

Match String and Get Variable PHP

I would like to be able to use this string to pull off a certain piece of data from a database '{my-id-1}' so basically if this is found in the text '{my-id-*}' then get the id (eg. if {is-id-1} then ...
0
votes
3answers
27 views

php: split string until first occurance of a number

i have string like cream 100G sup 5mg Children i want to split it before the first occurrence of a digit. so the result should be array( array('cream','100G'), array('sup','5mg Children') ...
0
votes
1answer
41 views

Regex preg_match price php

I created an regex and use preg_match in php preg_match_all('/(?<=|^)(?:[0-9]{1,3}(?:,| ?[0-9]{3})*(?:.[0-9]*)?|[0-9]{1,3}(?:\.?[0-9]{3})*(?:,[0-9]‌​*)?)(?:\ ...
1
vote
1answer
13 views

Extracting Strings on Multiline

Extracting Strings on Multiline Please share your ideas on this concern. how do i extract the string Domain/username field on this multi threaded line. Name Username COMP01-100 ...
0
votes
1answer
42 views

preg_match works only with string

I am having a very strange problem in wordpress. I get a post content as a variable and I do a preg_match on the variable without results. Then when using the string that is the variable, instead of ...
0
votes
1answer
49 views

preg_match move selection above paragraph

I'm wanting to move images above their container paragraphs in a large body of text using preg_replace. So, I might have $body = '<p><img src="a" alt="image"></p><img src="b" ...
0
votes
2answers
36 views

how to replace date format in a dynamic string variable?

my variable is a dynamic string variable in this string i have some date value and looks like $var = 'bd','100','10-05-2013','20-05-2013','alise'; but i want to change this date format like $var = ...
-1
votes
1answer
10 views

How do I get preg_match to output a specific part of a URL?

Okay, if I have the URL http://hello.com/api/thispart.php How to I get the preg_match() function to select just thispart So far I am looking at preg_match('@^(?:http://)?([^/]+)@', ...
0
votes
1answer
20 views

Preg_match Empty Strings

So, I have to read a text file and get certain fields like name*: xxxxx, and save the xxx in a new file.. I've been using Regex to get the xxxx and save them in the text file and its working well, the ...
-1
votes
1answer
32 views

need to delete new line last of txt using php (Türkçe açıklamalı)

İstanbul 04:22 Bursa00 03:11 Ankara0 02:53 İzmir000 02:34 Kayseri0 02:47 I saved this lines to the txt by using curl but I couldnt delete the line 6. It is not blank. because i can delete ...
-1
votes
1answer
30 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
3answers
31 views

preg_match() not working in some cases

I feel like this should be such an easy 'change the comma', so I've done my research and tried many different things, but nothing seems to work. First the code I used to attempt to debug it: /* More ...
0
votes
1answer
14 views

Calling string in seperate file in CodeIgniter

I'm building a profanity/racial slur filter for my website. I have it working, but my preg_match string is quite long. I'm just wondering if there is some way to host this long string in a separate ...
-3
votes
1answer
41 views

file_get_contents to get youtube video url PHP [closed]

I can get a full page source with file_get_contents function on php. I want to get youtube video links with file_get_contents & preg_match functions. For example this link: ...
0
votes
3answers
48 views

php preg_match find url

I can get a full page source. It similer like this: ...
0
votes
2answers
31 views

PHP regexp not working

I want to match "TEST:" in the following example: $text = "TEST: This is a test."; preg_match_all("/^([A-Z]+)\:$/m", $text, $matches); But $matches is empty. This however does work: $text = ...
0
votes
1answer
35 views

Preg_match don't allow letters and allow 0-3 numbers for given regular expression

I want to write a preg_match function for this BNF grammar. EXP ::= EXP + TERM | EXP - TERM | TERM TERM ::= TERM * FACTOR | TERM / FACTOR | FACTOR FACTOR ::= ( EXP ) | DIGIT DIGIT ::= 0 | 1 | 2 | ...
0
votes
0answers
57 views

preg_match returns different values for the same match [closed]

This is the code: <?php echo preg_match('/\$/', '$'); If I run it many times, pressin CTRL+F5 on the browser, the output is "1", but sometimes it's "0"!!! I'm running XAMPP 1.8.1 on localhost ...
-1
votes
1answer
21 views

user of preg_match and preg_replace

<?php $flag=true; if(isset($_POST['sub'])) {if(isset($_POST['text'])){ $a=$_POST["text"]; } else {$a='';} if(!empty($_POST['msg'])){ $b=$_POST['msg']; $c=strlen($b);} if(isset($_POST['wrd'])) ...
0
votes
1answer
31 views

Warning: preg_match() [function.preg-match]

i have problem with my pattern after i convert eregi to preg_match code has problem errors like Unknown modifier 'J' or Unknown modifier 'N' my pattern in eregi eregi("^name=".$name, $pg); ...
0
votes
2answers
32 views

preg_match return longest match

I am trying to return a series of numbers between 5 and 9 digits long. I want to be able to get the longest possible match, but unfortunately preg_match just returns the last 5 characters that match. ...
-1
votes
3answers
65 views

How to check if a string contains a series of exactly 10 consecutive digits? [closed]

How can I check if a string contains at least 1 series of exactly 10 consecutive digits ? For example: 1234567890 PASS asdf 1234567890 asdf PASS asdf 1234567890 asdf 1234567890 PASS ...
0
votes
2answers
50 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*$)))/"; ...
-1
votes
1answer
11 views

preg_replace()Delimiter must not be alphanumeric or backslash

I have this code : function queryString(){ //matches up to 10 digits in page number $query_string = eregi_replace("page=[0-9] {0,10}&","",$_SERVER['QUERY_STRING']); return ...
0
votes
1answer
6 views

Having trouble getting preg_match_all to work

I'm new to regular expressions and really struggling to get it to work. I'm trying to grab some information from a page that is in between the following html: <!--webbot bot="Include" ...
0
votes
1answer
41 views

How to order list of string based on matching alphabets occurrence?

I am not sure if anyone else have faced this issue. I have an list of array elements which need to display on auto suggest. I biggest issue is I need to display all the categories based on matching ...
1
vote
4answers
32 views

read a file from a specific line php

I try to read some specific lines in text file. My text file is like that : # # Aliases in this file will NOT be expanded in the header from # Mail, but WILL be visible over networks or from ...
0
votes
2answers
43 views

Write partly tab-delimited data to MySQL database

I have a MySQL-Database with 7 Columns (chr, pos, num, iA, iB, iC, iD) and a file that contains 40 million lines each containing a dataset. Each line has 4 tab delimited columns, whereas the first ...
0
votes
2answers
38 views

Preg_match for password always errors

I'm using this for a password that needs to be 8-20 chars long, only numbers, letters and !@#$% symbols: if (!preg_match('/^(?=.*\d)(?=.*[A-Za-z])[0-9A-Za-z!@#$%]{8, 20}$/', $_POST['password'])) { ...
1
vote
2answers
51 views

Not gready regex doesn't work

Regex: preg_match('/<td[^<^>]*>(.*?)<\/td><td[^<^>]*>'.preg_quote('<input type=\'text\' name=\'nazwisko\'>', '/').'<\/td>/Ui', $form_string, $matches); ...
1
vote
5answers
90 views

How to ensure user submitted numeric input follows a certain format

I am working in PHP and I want to check if a given user submitted numeric input is not too big or too small. I am storing the amounts in the database as 64 bit integers (multiply them by 10^8 to ...
-1
votes
2answers
29 views

Preg_match with referenced variable in PHP [closed]

The following code does not give me the expected results. if (isset($newpost['message'])) { $matches = array(); preg_match_all("~\[QUOTE\=.*;(\d+)\]~isU", $newpost['message'], $matches); ...
0
votes
2answers
43 views

Regular Expression to Extract the content between the tags [img] and [/img]

Trying to come up with a PHP regexp that would extract the content of the first [img]...[/img] tag in a text. Can be img or IMG as well. Really appreciate any help. Using my poor regexp, I came by ...
1
vote
2answers
58 views

how to capture every single match of a repeated pattern? [duplicate]

I have the following regexp: /xxx ([a-z]+)(?:, ([a-z]+))* xxx/ I want to capture all colors in the following test string: xxx red, blue, pink, purple xxx (now only red and purple get captured) ...
0
votes
2answers
33 views

String filtering in php with preg_match and regular expression

I am creating a simple checker function in PHP to validate strings before putting them into an SQL query. But I can not get the right results the from the preg_match function. $myval = ...
0
votes
1answer
46 views

Email validation - What is wrong with my regex code?

I'm trying to validate an email address using preg_match.. But i'm getting this error.. Warning: preg_match(): Unknown modifier '+' This is my code ...
1
vote
1answer
48 views

Regular Expression PHP not validating correctly

I am trying to write a regex for my code, the regex is used to validate the phone number format, the first two digits should be either 01,04,05,06,07,08,09 followed by a dash (-) and followed by 6 ...
0
votes
3answers
49 views

How to get content from nested mark using PHP with regular expression?

Here is the string: $text = "aaaaaaaa[[Image:1939.jpg||thumb|right|200px|[[1939]], [[Mr. X]] is [[here]].]]bbb"; I wanna get this: Image:1939.jpg||thumb|right|200px|[[1939]],[[Mr. X]] is [[here]]. ...
1
vote
1answer
55 views

preg_match only some numbers

I want to write preg_match function for this BNF grammar. EXP ::= EXP + TERM | EXP - TERM | TERM TERM ::= TERM * FACTOR | TERM / FACTOR | FACTOR FACTOR ::= ( EXP ) | DIGIT ...
0
votes
1answer
47 views

Get index from text using PHP [duplicate]

This question is a continuation of my previous question: Check tag & get the value inside tag using PHP I have a text like this : <ORGANIZATION>Head of Pekalongan ...
0
votes
2answers
31 views

MySQL ReGex statement

I have never come across RegEx in mySQL, In a column I have over 500 different server versions. is it possible to only fetch anything before a forward slash so that i can detect the most common ...

1 2 3 4 5 41