Hi
i have a variable 'reform' and store the lines like
reform= {
record
string(8) ID;
string(4) PRD;
date("YYMMDD", split = "800101") DateofManufact;
string(4) PRDC_MODULE_NUM;
string(1) END_OF_RECORD = "\n";
}
I need to search for the character "\n"in the above variable 'reform'.
if "\n" is available then i need to return boolean
i.e
return not "\n" in fields
I tried like below
fields = $reform_out2.field_names()
return not "newline" in fields
It is not working, can any one throw some light into it.
Regards
Dhana