php regular expression problem

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default php regular expression problem

    Hi,

    I've got just a small problem, it's probably not very complex but I'm not
    very experienced with regular expression stuff. I just need to detect email
    addresses in a string. I know that the emails already in there will be
    valid, so it just has to detect them, not do any validation, so a fairly
    naive solution would probably work. I've tried a few things, but to no avail
    so far.

    Any clues? :)

    thanks
    Rob


    rob :: digitalburn Guest

  2. Similar Questions and Discussions

    1. regular expression problem ? and * characters
      Im writing a perl script now and this is part of the sricpt chomp = ($pattern = ARGV); for each(@thisarray) { if($_ =~ m/$pattern/i) {...
    2. Regular Expression Problem
      I am trying to parse a relatively simple SQL query with a regular expression. All is going well except for one issue I don't seem to be able to...
    3. Problem with regular expression
      I'm trying to use a regular expression to remove from the output of a call to ToString with an XML object, the text between "<?" and "?>" txtvar...
    4. help on regular expression
      Hi, I need some help on regular expression... i have following in variable $total_count $total_count = "##I USBP 000001 10:38:09(000)...
    5. Regular Expression HELP!
      I'm stripping out the attributes in <TD> tags...but I want to strip out everything BUT the COLSPAN attribute. The following strips out all...
  3. #2

    Default Re: php regular expression problem

    No worries, found something :) If anyone's interested, this finds an email
    address in a string:

    '/[_a-z0-9-]+(\.[_a-z0-9-]+)*)[a-z0-9-]+(\.[a-z0-9-]{2,})+/'


    rob :: digitalburn Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139