2
votes
7answers
101 views
How to remove diacritics from text?
I am making a swedish website, and swedish letters are å, ä, and ö.
I need to make a string entered by a user to become url-safe with PHP.
Basically, need to convert all characte …
2
votes
3answers
110 views
Wrapping a chunk of text with tags using PHP
I'm trying to allow a user (using Wordpress) to insert a jquery slideshow gallery (http://www.queness.com/resources/html/slideshow/jquery-slideshow.html) based on a faux tag. For e …
0
votes
5answers
48 views
Are the PHP preg_functions multibyte safe?
There are no multibyte 'preg' functions available in PHP, so does that mean the default preg_functions are all mb safe? Couldn't find any mention in the php documentation.
0
votes
4answers
36 views
php getting part of a url into a sting
This question is more of a "what is the best/easiest way to do this type of question. I would like to grab just the users id from a string such as <a href="/profile.php?rdc33273 …
0
votes
6answers
92 views
PHP Preg-Replace more than one underscore
How do I, using preg_replace, replace more than one underscore with just one underscore?
0
votes
3answers
161 views
Regular expression to replace an <a> with respective <img>
I'm looking for a PHP preg_replace() solution find links to images and replace them with respective image tags.
Find:
<a href="http://www.domain.tld/any/valid/path/to/imagefil …
0
votes
0answers
66 views
PHP not change color in quotes
I want to change the color of text inside single quotes, but i have also want to change the color of parenthasis as long as they arent in quotes. this is what i have but its not wo …
0
votes
1answer
24 views
how to return a regex match in php, instead of replacing
I'm trying to extract the first src attribute of an image in a block of HTML text like this:
Lorem ipsum <img src="http://site.com/img.jpg" />consequat.
I have no problem …
1
vote
8answers
97 views
Check if a string is an email address in PHP
I am trying to do an SQL query, but I need to check somehow if the value is an email address.
I need a way to check if $user is an email address, because I have user values such as …
0
votes
2answers
31 views
Using preg_replace to format
Having trouble with pattern and replacement. How can I make the replacement echo a final product such as
INSERT INTO `table` (`person`, `file`) VALUES
('test','test'),
('test2','t …
0
votes
2answers
37 views
preg_replace with function
I have some HTML that is being run through PHP:
<a href="?char=">&</a>
and I'm wanting to use a preg_replace to replace the first & with a urlencoded value of …
0
votes
3answers
66 views
Is there a MySQL equivalent of PHP’s preg_replace?
I have a to match a field in MySQL, for which I thought I could use a regular expression, but it appears that MySQL doesn't have the functionality I need to do the job. Here's the …
0
votes
2answers
43 views
PHP regular expression replace?
I want to split alpha-numeric (with space) and non-alpha-numeric by comma in a string.
I tried with this...
$str = "This is !@#$%^&";
preg_replace("/([a-z0-9_\s])([^a-z0-9_]) …
1
vote
3answers
41 views
preg_replace problem
Hi,
I'd like to match and extract variables from: {{variable:int}}
variable would be anything a-z
: is a separator
int would be an integer 0-9
Curretly i have: preg_replace('! …
0
votes
1answer
17 views
preg_replace removes second backslash at start of line
Consider this:
$sServerPath = "\\\\nlyehvedw1cl016\\projects$\\ARCLE_SW_SVN\\";
$sSVNParentPath = $sServerPath."svn\\";
$bla = "
authz_module_name = TEST_TestRepos
repository_dir …
