I was having a strange requirements last days and one of them is this one:
we have a string and we want to add a separator after 8 digit.
Here is the post which help me to achieve the my solution:
http://stackoverflow.com/questions/9932096/add-separator-to-string-at-every-n-characters
Solution:
here is the solution that worked for me:
string x = "111111110000000011111111000000001111111100000000";
output should be :
"11111111,00000000,11111111,00000000,11111111,00000000,"
C# : Regex.Replace(myString, ".{8}", "$0,");
Javascript:
"111111110000000011111111000000001111111100000000".replace(/(.{8})/g,"$1,")
Subscribe to:
Post Comments (Atom)
-
In last blog we learn how can we enable footer on SharePoint Online Modern Communication site. If you have not gone through that you can use...
-
One of our client wanted to show Employee Directory and our first suggestion was to build custom SPFx which will fetch data from Azure AD or...
-
Recently I was working on sending mail using smtp server where I stuck on below error: IIS/SMTP - emails are stuck in mailroot/Queue ...
No comments:
Post a Comment