For the example, I am calling the column name you have your file names in, "FileName"
For Each Row(
:FileName = word(1,:FileName,".");
);
If you create a new column and want to use a formula to change the values all you have to do is to create a new character column, and specify the formula:
word(1, :FileName, ".");
Jim