Click here to Skip to main content
15,881,424 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
now i have one string named input string in that i have characters like a,b,c,d .....upto z now i want to write function for another string like output string that have first 10 characters of that input string then space and then another 10 characters of this input string
now for those who will write comment after reading this please do at your qwn this is homework you are not suppose to put homework on code project for them i have tried
C#
string output;
 function Getstring(string input)
{
  string input="abcdefghijklmnopqrstuvwxyz";
   output.substring(0,10);
   return output;

} 

so may i get output like abcdefghij
correct me if i m wrong but what about space and then after another 10 charecters?? please help me .
Posted
Updated 1-Apr-13 21:38pm
v2

1 solution

If this is C# code then
-----------------------------------------
Correct code
------------------
C#
private string Getstring(string inStr)
{
  string input=inStr;
  string  output =input.substring(0,10);
  return output;
}





here is your mistake in bold

C#
function Getstring(string input)
{
string input="abcdefghijklmnopqrstuvwxyz";
output.substring(0,10);
return output;

}
 
Share this answer
 
Comments
pandya purvang 2-Apr-13 3:20am    
yaa okk thanks sir but what about space and another 10 characters?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900