Export function name to excel

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Maarir
    New Member
    • Oct 2019
    • 1

    Export function name to excel

    i have a function like "int A(char x)"

    i want split the function and export into excel sheet as given below

    1st column: filename [filename .cpp]
    2nd column: int A(char x) [function protype]
    3rd column: int [function return type]
    4th column: A [Function name]
    5th column: char [arg return type]
    6th column: char [arg name]
    Last edited by Maarir; Oct 10 '19, 12:11 PM. Reason: more understanding
  • dev7060
    Recognized Expert Contributor
    • Mar 2017
    • 656

    #2
    Formatted data can be written to a file using some already available file handling functions like fprintf(). And for "int A(char x)", separate components can be extracted and used from this string according to the needs.

    Comment

    Working...