How to mach string with regex

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • supert
    New Member
    • Apr 2011
    • 2

    How to mach string with regex

    Hi Guis,
    I try to match "Zimo - World" in
    Code:
    <title>
        Zimo
            - World
      </title>
    whit that regex

    Code:
    Zimo\n(.*?)<
    but doesn't work.
  • supert
    New Member
    • Apr 2011
    • 2

    #2
    I get it
    vRegExp.Pattern = "<title> Zimo - .+</title>"

    Comment

    Working...