Re: regex question

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Try (for example if character was "A") ...

([^A]|^)A([^A]|$)

This matches four cases:
A is at beginning of string and there is another letter after it,
A has a letter before it and a letter after it,
A is at end of string and there is a letter before it,
or A is the only character in the string.

On 5/16/05, Al <news@xxxxxxxxxxxxx> wrote:
> What pattern can I use to match ONLY single occurrences of a character in a string.
> 
> e.g., "Some text @ and some mo@@re and mor@e, etc @@@.
> 
> I only want the two occurrences with a single occurrence of "@".
> 
> @{1} doesn't work; there are 4 matches.
> 
> Thanks....
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux