CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #4
    Join Date
    May 2002
    Posts
    10,943

    Re: Regex - finding words with two e's

    Code:
    /\w*ee\w*|\w*e[^>]*e\w*/i
    Two conditions separated by a |
    • Any word containing "ee" back to back.
    • Two "e" characters separated by any other character...all within the word boundary.
    Last edited by PeejAvery; March 17th, 2010 at 04:15 PM.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured