Regex replace case insensitive / ignore case
regex-replace-case-insensitive.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
//this section create a string variable.
string stringValue = "Olive Yellow red green violet yeLLow white";
Label1.Text = "string..................<br />";
Label1.Text += stringValue.ToString();
//this section replace substring with substring in string ignore case.
string replacedString = Regex.Replace(stringValue, "yellow", "pink", RegexOptions.IgnoreCase);
//alternate option to ignore case string replace using Regex
Regex rex = new Regex("yellow",RegexOptions.IgnoreCase);
string returnString = rex.Replace(stringValue, "pink");
Label1.Text += "<br /><br />replaced string......................";
Label1.Text += "<br />" + replacedString.ToString();
Label1.Text += "<br />" + returnString.ToString();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - regex replace case insensitive / ignore case</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - regex replace case insensitive/ignore case
</h2>
<hr width="550" align="left" color="Gainsboro" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="regex replace case insensitive / ignore case"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to replace a character in a string from a starting index
- How to replace first occurrence of a substring within a string
- String contains regex
- How to check whether a string contains numbers only
- String contains list of strings
- String contains multiple values
- How to check string array contains a string
- How to append a char to a string
- How to add backslash to a string
- How to concatenate multiple strings