Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all,
i have a function name, and i want to get the body of that function from a file.
how can i move with this?
for eg:
C#
//file.cpp

void xxx()
{
 void main()
 {
  int a,b;
  printf("hi");
 }

 int c=10;
 print(c);
}

if i give main(),then i should get the body of main() function as follows
C++
{
  int a,b;
  printf("hi);
}

thanks in advance
Posted
Updated 7-Jun-12 20:23pm
v3

1 solution

If you want to do this by program then you need to write a parser that can scan the text of the file and recognise the start and end of functions. As you scan then you need to note the locations of all these points so you can then extract the text as required.
 
Share this answer
 

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