You are here: Re: [PHP] Help with regular expressions « PHP « IT news, forums, messages
Re: [PHP] Help with regular expressions

Posted by Al on 09/30/18 11:37

John Nichel wrote:
> Carl Furst wrote:
>
>> Ok I am so stumped.. I'm doing something stupid and I can't figure it
>> out..
>>
>> Here's the code:
>>
>> <?php
>>
>> $eml = 'hiddenemailadddress@hiddendomain.net ceo';
>> if (strpos($eml, ' ')) echo "yep, there are spaces\n"; //does strpos
>> see the
>> spaces?
>> echo preg_replace('/\s/', '', $eml); //WTF? Preg_replace does not?
>> echo "$eml\n";
>>
>>
>> ?>
>>
>> As you can see there are a bunch of spaces in that email address. I'm
>> trying
>> to use preg_replace to get rid of them. Strpos sees the spaces and the
>> first
>> echo statement is executed. The second echo prints nothing and the third
>> prints the original $eml with nothing substituted.
>>
>> Can anyone see why the perl reg isn't seeing the spaces?
>>
>> Carl
>>
>
> Working fine on my end (copy/pasted your code)
>


$eml= trim($eml);

$pattern= "%\s%"; //I use % as delimiters, more obvious for me when debugging

if(preg_match($pattern, $eml) echo "yep, there are spaces\n";

preg_replace($pattern, '', $eml); echo "works now\n";

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация