Regex help

  • Thread starter Thread starter Papanii Okai
  • Start date Start date
P

Papanii Okai

Hi Guys,
I am a newbie at C# and i am trying to use the Regex class. I
currently have a string with some text and i want to replace part of the
string which has a particular pattern. I have created a group name for the
pattern but i don't know how to indicate what the new pattern is. I want to
use the group name technique.
Here is the code i have at present..

string scriptline = "00:00:00.045 URL
http://thewjhrj/fhsfsjfksjfjslf/sfjsf/fflkfs/.htm&&eframe";

Regex rx = new Regex((@"?<time>^\d\d:\d\d:\d\d.\d\d\d"));

I want to change the format form \d\d:\d\d:\d\d.\d\d\d to \d\d:\d\d:d\d\.\d.
which menas 00:00:00.045 becomes 00:00:00.0Can anyone lead me to the right
direction.

Thanx..
 
Back
Top