vote up 1 vote down star
class Program
    {
        static void Main(string[] args)
        {
            string s = "the U.S.A love UK";
            Console.WriteLine(replace(s));
        }

        public static string replace(string s)
        {
            s = Regex.Replace(s, @"^U.S.A", " United state Of America");
            s = Regex.Replace(s, @"^Uk", "United kingdom");
            return s;
        }

    }

Why its not replacing the U.S.A with " united state of Amiriaca and uk with united kingdom i did it but its not workin

flag

5 Answers

vote up 1 vote down check

For simple replacements, you don't need Regular expressions:

string s = "the U.S.A love UK";
s = s.Replace("U.S.A", "United States of America").Replace("UK", "United Kingdom");
link|flag
hehe: this is my standard response to most regex questions, but I saw the homework tag and took that to mean that using a regex was part of the assignment. – Joel Coehoorn Jan 6 '09 at 21:52
vote up 0 vote down

There are already enough correct answers above. So I'll just add that an excellent resource for better understanding regular expressions is Mastering Regular Expressions

link|flag
vote up 1 vote down

To expand upon annakata's answer:

In regular expressions the '^' character means "match at the beginning of the String", so if you wanted "U.S.A." to be replaced, it would have to be the first six characters in the string, same for UK. Drop the '^' from your RE, and it should work.

And regarding the comment about the '.' character, in regular expressions this means match any character. If you wish to match a literal '.' you must escape it like this "."

link|flag
I was kind of deliberately not expanding on the grounds it's a homework question ;) – annakata Jan 6 '09 at 17:37
That's a fair point, I missed that tag when I was looking at this initially. – foxxtrot Jan 6 '09 at 18:14
vote up 1 vote down
  1. The . in your U.S.A expression will match any single character. I doubt that's what you intend.
  2. The ^ pins your expression to the beginning of the string. You don't want it.
  3. By default, regular expressions are case sensitive. If you want Uk to match UK you need to specify a case-insensitive compare.
link|flag
vote up 3 vote down

Well, look at the search pattern in your regex.

The ^ has a specific meaning. (as do the . but they won't actually fail in this case, but they aren't doing what you think they are)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.