Skip to main content

Notifications

Microsoft Dynamics CRM (Archived)

How to mask the string value.

Posted on by

Hello All, Experts,

I want to mask the value with "XXXXX" but how to.

suppose i get value in string with different lengths , i.e. sometime 3 characters or more than 10 characters.

i want to mask each character with X till no.of characters.

*This post is locked for comments

  • Verified answer
    EmployeeOcta Profile Picture
    EmployeeOcta on at
    RE: How to mask the string value.

    static void Main(string[] args)

           {

               string input = "779";

               string maskvalue = string.Empty;

               if (!string.IsNullOrEmpty(input))

               {

                   for (int i = 0; i < input.Length; i++)

                   {

                       maskvalue =maskvalue+  "X";

                       Console.WriteLine("{0}",input[i]);

                       Console.WriteLine("{0}", maskvalue);

                   }

               }

               Console.ReadKey();

           }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Community AMA December 12th

Join us as we continue to demystify the Dynamics 365 Contact Center

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,253 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,188 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans