Customer Portal

i want to check format of the data

Comments 3

  • Avatar
    jurban
    0
    Comment actions Permalink
    Hi,
    use can use Reformat or ExtFilter with an expression in the Clover Transformation Language (http://wiki.clovergui.net/doku.php?id=t ... ang_syntax). The language has methods which can check the input data.

    Jaro
  • Avatar
    mishra.hanu@yahoo.co.in
    0
    Comment actions Permalink
    Hi,

    can you please give me example that how to write a expression to remove speciall characters....
  • Avatar
    jurban
    0
    Comment actions Permalink
    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".

    Jaro

Please sign in to leave a comment.