Hi
I want to check in string src="nil.jpg" after src=" is there a letter with p if not then replace replace="nil.jp g"
I am using regular expression
Regex.Replace(s , "(src=\\W[^p])", @"replace="" );
The problem is i am getting replace="il.jpg " I am loosing the first letter in this case 'n' , i want it to be replace="nil.jp g" can any one help me
Thank You.
I want to check in string src="nil.jpg" after src=" is there a letter with p if not then replace replace="nil.jp g"
I am using regular expression
Regex.Replace(s , "(src=\\W[^p])", @"replace="" );
The problem is i am getting replace="il.jpg " I am loosing the first letter in this case 'n' , i want it to be replace="nil.jp g" can any one help me
Thank You.