Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Preg Replace Problem
Tom743
post May 28 2008, 01:19 PM
Post #1


Newbie
*

Group: Members
Posts: 7
Joined: 12-January 08
Member No.: 56,132



If i have a word like c.........a......t (with the dots in) and i wanted to replace it with cat how would i do it. If i use

CODE
<?php
$patterns = "/c(*)a(*)t/";
$replace = "cat";
echo preg_replace($patterns, $replace, 'c.....a.........t');
[/color][color="#000000"]?>


then when i type something like "
come and look at this" is also filtered. Is there any way just to filter cat with dots in?
Go to the top of the page
 
+Quote Post
truefusion
post May 29 2008, 03:10 AM
Post #2


Ephesians 6:10-17
Group Icon

Group: [MODERATOR]
Posts: 1,893
Joined: 22-June 05
From: The World of Gentoo
Member No.: 8,528
T17 GFX Crew



If all you want to do is eliminate dots found specifically inbetween the letters "c", "a" and "t", then the following should work:
CODE
$patterns = "/c\.{2,}a\.{2,}t/";
$replace = "cat";
echo preg_replace($patterns, $replace, 'c.....a.........t');

Anything else would require a more complex pattern.
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. 60 Seconds Countdown That Shutdown The Pc(13)
  2. Problem Installing Sims 2 Nightlife(26)
  3. I Have A Girl Problem Here(27)
  4. Problem With Page Redirect(8)
  5. Php Header Problem(11)
  6. Dvd Drive Problem(10)
  7. Remote Assistance Problem(8)
  8. Laptop Keyboard Problem(7)
  9. Skype / Xampp Port Conflict(5)
  10. Two Lan Ports Problem(3)
  11. Rpg Maker 2003 Music Problem(3)
  12. I'm Having A Strange Problem With My Ping In Cs:s(28)
  13. I Have A Big Problem With Cs 1.6.(4)
  14. A Simple Preg_replace Help Please.(2)
  15. Need Help: Problem Seeing My Site(4)
  1. Forum Problem? Topic Disappeared Immediately [resolved](2)
  2. Hosting Problem [resolved](22)
  3. Problem Aligning In Firefox(9)
  4. It Went Well For A While(5)
  5. Itunes Problem!(1)
  6. How Many More Times Will I Have To Post About This?(11)
  7. Problem Getting Text To Align With Different Resolutions(4)
  8. Youtube People That Do Not Respect Other Opinions(7)
  9. A Problem With Ftp Clients(9)
  10. Domain Problem : This Is Important..(0)
  11. Browser Compatibility Problem With Firefox - Javascript + Css(3)
  12. Terminating Hosting Problem(1)
  13. Problem With My Girlfriend Family, Need Suggestions For Action(2)


 



- Lo-Fi Version Time is now: 5th September 2008 - 01:35 PM