in reply to Re: Needing to take out 3rd word of sting
in thread Needing to take out 3rd word of sting

Here is an example of what I'm considering a word:
/\b(?:impotence(?:problem|cure|solution)|Premature Ejaculation|erectile dysfunction)/i
It has various characters and I guess it does have whitespace. So it would need to be the third and any other after that
  • Comment on Re: Re: Needing to take out 3rd word of sting

Replies are listed 'Best First'.
Re: Re: Re: Needing to take out 3rd word of sting
by mr_evans2u (Novice) on Sep 24, 2003 at 20:36 UTC
    Sorry didn't log in. Here is an example of what I'm considering a word:
    /\b(?:impotence(?:problem|cure|solution)|Premature Ejaculation|erectile dysfunction)/i
    It has various characters and I guess it does have whitespace. So it would need to be the third and any other after that