C#
string[] emails = { "Shakiy@gmail.com", "Mary@hotmail.com", "Glenn@gmail.com", "Hillock@yahoo.com"};
var modEmail = from em in emails
select new
{
EmailID = em,
ModifiedEmail = Regex.Replace(em, "[@]", "[attherate]")
};
foreach (var mo in modEmail)
{
Response.Write(mo.ToString() + "<br/>");
}
VB.NET
Private emails() As String = {"Shakiy@gmail.com", "Mary@hotmail.com", "Glenn@gmail.com", "Hillock@yahoo.com"}
var modEmail = from em in emails ReadOnly Property [New]() As select
em, ModifiedEmail = Regex.Replace(em, "[@]", "[attherate]")
EmailID = em, ModifiedEmail
End Property
For Each mo In modEmail
Response.Write(mo.ToString() & "<br/>")
Next mo
Do you have a find and replace or is that still done in the select query part.
ReplyDeletee.g. I have a datarow in DataTable (or string) but I want to replace "<" to "<" & ">" to ">", etc.
thanks,
George.
string[] emails = { "Shakiy@gmail.com", "Mary@hotmail.com", "Glenn@gmail.com", "Hillock@yahoo.com" };
ReplyDeletevar newmodEmail = emails.Select(x => new { EmailID = x, ModifiedEmail = Regex.Replace(x, "[@]", "[attherate]") });
Array.ForEach(newmodEmail.ToArray(), Console.WriteLine);
dear Sir
ReplyDeleteI have Page1.aspx with DIV
i am calling Page2.aspx with jQuery Load and Loading in DIV
Page2.aspx has Button..when I click on button page1 vanishes please guide