P
Phil396
I am trying to mix metacharacters and the literal versions
in an expression and no matter what I try it does not
work.
Here is the code
customer = Regex.Replace(customer,"[.]$","");
I want to remove all periods from the end of customer
names. However I really need to know how to
mix metacharacters and the literal versions ( mostly
periods ) in an expression. I have tried using \.
@ and other ways to escape out the period but with
zero success.
in an expression and no matter what I try it does not
work.
Here is the code
customer = Regex.Replace(customer,"[.]$","");
I want to remove all periods from the end of customer
names. However I really need to know how to
mix metacharacters and the literal versions ( mostly
periods ) in an expression. I have tried using \.
@ and other ways to escape out the period but with
zero success.