| T O P I C R E V I E W |
| blt2si |
Posted - 08/12/2003 : 03:07:04 AM Hi, Just wondering if anyone knows if it is possible to edit text in a cell using labtalk? I have written the filename into a cell using %(%H,7,5)="%A"; But %A = filename.txt and i dont want the .txt on the end. Is there anyway to delete that portion of the string? Cheers and thanks! |
| 2 L A T E S T R E P L I E S (Newest First) |
| blt2si |
Posted - 08/12/2003 : 10:24:31 AM Thanks!! |
| Mike Buess |
Posted - 08/12/2003 : 07:19:28 AM Hi,
The following substring notation extracts everything to the left of the dot character.
%A=filename.txt; %A=%[%A,'.']; %A=; filename
Mike Buess Origin WebRing Member |
|
|