Results 1 to 4 of 4

Thread: easy REGEX Question.

  1. #1

    Thread Starter
    Addicted Member VBGangsta's Avatar
    Join Date
    Aug 2003
    Location
    New York
    Posts
    219

    easy REGEX Question.

    I need a regex character that will return me any kind of character. Like with (?<=Points)\w+(?=\<\/p\>) \w only gets certain kinds of results, I need to get ANY Character including spaces. Does anyone know what it could be? Thanks
    -Rob

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Try

    .*

  3. #3

    Thread Starter
    Addicted Member VBGangsta's Avatar
    Join Date
    Aug 2003
    Location
    New York
    Posts
    219
    Thats what i am lookig for thank you, BUT it is showing blank spaces as @ is there anyway to prevent this and just make it show a space? Thank you
    -Rob

  4. #4
    Fanatic Member alexandros's Avatar
    Join Date
    Oct 2002
    Location
    Milky Way Galaxy
    Posts
    694
    try this [.\n]*
    only . does not include the new line character \n.

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