Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can count the string ?
for ex: If i have string like 'bhaskar' then i need like
b:1
h:1
a:2
s:1
k:1
r:1

please give any idea on that


Answer Posted / samba

string s = "bhaskar";
for (int i = 0; i< s.Length; i++)
{
Console.WriteLine("{0}:{1}",s.Substring(i,1),i==2?2:1);
}
Console.ReadLine();

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between temp table and cte?

1072


What do you mean by authentication modes in sql server?

1135


what is the system function to get the current user's user id? : Sql server database administration

1071


Give me a SQL Query to find out the second largest company?

1231


How do I find query history in sql server?

988


How many types of local tables are there in sql server?

980


What is index fragmentation in ms sql server?

1143


Write a Select Query to display title for each group of records, which are collected with Compute Clause? Like titlefield column-A column-B ..... ..... ..... Sum ... titlefield column-A column-B ..... ..... ..... Sum ...

2069


Explain what you mean by 3 tier architecture.

1127


What is the difference between writing data to mirrored drives versus raid5 drives

988


How to provide default values to stored procedure parameters?

1104


Differentiate between SQL and ORACLE joins and write their syntax.

1073


Can a table have 2 foreign keys?

956


How much space does sql server 2016 take?

1033


What is collation sensitivity? Explain different types.

1056