subroutine noextspaces(name ,length ) !----- GPL --------------------------------------------------------------------- ! ! Copyright (C) Stichting Deltares, 2011-2014. ! ! This program is free software: you can redistribute it and/or modify ! it under the terms of the GNU General Public License as published by ! the Free Software Foundation version 3. ! ! This program is distributed in the hope that it will be useful, ! but WITHOUT ANY WARRANTY; without even the implied warranty of ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! GNU General Public License for more details. ! ! You should have received a copy of the GNU General Public License ! along with this program. If not, see . ! ! contact: delft3d.support@deltares.nl ! Stichting Deltares ! P.O. Box 177 ! 2600 MH Delft, The Netherlands ! ! All indications and logos of, and references to, "Delft3D" and "Deltares" ! are registered trademarks of Stichting Deltares, and remain the property of ! Stichting Deltares. All rights reserved. ! !------------------------------------------------------------------------------- ! $Id$ ! $HeadURL$ !!--description----------------------------------------------------------------- ! ! Function: Removes the spaces at the front and the ! end of the name. Also returns the length of the ! cleaned name. ! WARNING: do not call this subroutine with a ! constant character string ! Method used: ! !!--pseudo code and references-------------------------------------------------- ! NONE !!--declarations---------------------------------------------------------------- implicit none ! ! Global variables ! integer :: length !! Length of cleaned name character(*) :: name !! Name to be cleaned ! ! ! Local variables ! integer :: begpos integer :: endpos integer :: pos character(1) :: achar ! ! !! executable statements ------------------------------------------------------- ! ! !-----initialization ! begpos = 1 endpos = len(name) if (endpos==0) then length = 0 goto 999 endif ! !-----skip backside spaces ! 100 continue achar = name(endpos:endpos) if (achar==' ') then endpos = endpos - 1 if (endpos>0) goto 100 length = 0 goto 999 endif ! !-----skip frontside spaces ! 200 continue achar = name(begpos:begpos) if ((achar==' ') .and. (begpos