I would like to to join two data tables , the identifier is the date with the following format yyyymmddhh (example 2016091203) but in one of the tables the format is different (yyyy-mm-dd-hhhh ) so, is there a node that can help me change the format.
Prior to Joiner node, use String to Date&Time node with both tables. This node will help you to convert the character representation of the date into "date&time" format, which would then serve you as unique identifiers. In configuration window of String to Date&Time node, go to "Type and Format Selection" dialog and in "Date format:" specify (just type in) the date format in your table. E.g. in the first table it should be yyyymmddhh and in the second one yyyy-mm-dd-hhhh. Afterwards, in Joiner node use these newly generated date columns as the unique identifiers of the tables.
I try to use the " String to Date/Time " node since the date column in my tables are the Row IDs so I could not see them on the list of "Selection Column" .
The problem was that the date was the default row ID and now when i deselect the " read row IDs" on the imported file configuration, the system gave a new row ID (Row 0, row1, row 2 etc) to the table so now when i used the "string to date" node i can see the date column on the list and i can convert the format.