|
Posted by Brandon Ryan on 05/17/05 00:02
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@ridersite.org> 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
>
>
Navigation:
[Reply to this message]
|