regular expressions

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bert

    #1

    regular expressions

    Hi

    How can I delete and mark in a text with a regular expression?

    thanks

    B


  • Spam Catcher

    #2
    Re: regular expressions

    "Bert" <beffer@gmail.c omwrote in news:#Qqdj0ILHH A.3552
    @TK2MSFTNGP03.p hx.gbl:
    How can I delete and mark in a text with a regular expression?
    Take a look at System.Text.Reg ularExpression namespace.

    Comment

    • george_w_blair@yahoo.com.sg

      #3
      Re: regular expressions

      Replace("MyShit ", "")

      George

      Bert wrote:
      Hi
      >
      How can I delete and mark in a text with a regular expression?
      >
      thanks
      >
      B

      Comment

      • Anon-E-Moose

        #4
        Re: regular expressions

        george_w_blair@ yahoo.com.sg wrote in news:1167552041 .725493.84130
        @s34g2000cwa.go oglegroups.com:
        Replace("MyShit ", "")
        That shit ain't regular expressions ;-)

        Comment

        • george_w_blair@yahoo.com.sg

          #5
          Re: regular expressions

          Its the regular way I do it.


          Anon-E-Moose wrote:
          george_w_blair@ yahoo.com.sg wrote in news:1167552041 .725493.84130
          @s34g2000cwa.go oglegroups.com:
          >
          Replace("MyShit ", "")
          >
          That shit ain't regular expressions ;-)

          Comment

          • Herfried K. Wagner [MVP]

            #6
            Re: regular expressions

            "Bert" <beffer@gmail.c omschrieb:
            How can I delete and mark in a text with a regular expression?
            'System.Text.Re gularExpression s.Regex.{Replac e, IsMatch, Match}'.

            --
            M S Herfried K. Wagner
            M V P <URL:http://dotnet.mvps.org/>
            V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

            Comment

            Working...