I have requiremnt that ,i am validating a csv file.i want to validate the format data of the records in the CSV file.i want to check that data should not have any special characters and the double quotes inbetwwen the string data etc.
Hi,
you can use the replace() function to remove any characters. Example:
$OutputName := replace($InputName, ’ [!@$]', ‘’);
The example would replace all occurences of the “!”, “@”, “$” characters in the input field called “InputName” with an empty string, thus removing them. The output is stored in the output field called “OutputName”.