comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » quick strsplit question
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: quick strsplit question [message #59220 is a reply to message #59073] Thu, 06 March 2008 02:25 Go to previous messageGo to previous message
Nigel Wade is currently offline  Nigel Wade
Messages: 286
Registered: March 1998
Senior Member
rlayberry@hotmail.com wrote:

> Hi
>
> I am, trying to split an number of terms such as str9=dg_eyemouth.out
>
> to take off the file extension
>
> print,strsplit(str9,'.out',/extract,/regex)
>
> but this gives
>
> dg_eye h
>
> any ideas
>
> thanks
>
> russ

You've specified /regex. The character "." is a special character in a regex
which matches anything. So ".out" will match "mout".

You can remove the special nature of "." by preceding it with a backslash. You
should probably also tie the match to the end of the string by appending a
dollar:
print,strsplit(str9,'\.out$',/extract,/regex).

A better approach might be to use the function file_basename:

print,file_basename(str9,[".out"])

--
Nigel Wade, System Administrator, Space Plasma Physics Group,
University of Leicester, Leicester, LE1 7RH, UK
E-mail : nmw@ion.le.ac.uk
Phone : +44 (0)116 2523548, Fax : +44 (0)116 2523555
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Previous Topic: Re: Workspace unavailable
Next Topic: end-of-line termination

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Sun Oct 12 05:48:44 PDT 2025

Total time taken to generate the page: 2.00525 seconds