INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: POS() function - what to use instead? (Podcast downloads)  (Read 1137 times)

mabel

  • Recent member
  • *
  • Posts: 6
POS() function - what to use instead? (Podcast downloads)
« on: May 01, 2015, 11:00:37 am »

JRiver 20.0.93

Podcast downloads.

I have set various tags in a specific order so it displays the info. I want in the correct order on my car display.

I have set all the fields as I want apart from the NAME filed.

I only want data to the right of the first colon (see below) but there is no POS function (to find out where the colon is), so I can tell the RIGHT function where to start.

Any suggestion/advice is most welcome


The name field is in the format of;

Program Name colon space Program Title

e.g.

5LI: NHS Staff Who Can't Speak English 18 SEP 11

I want to remove the Program Name Colon Space

And just leave the Program Title

e.g.

NHS Staff Who Can't Speak English 18 SEP 11


thanks

Logged

Vincent Kars

  • Citizen of the Universe
  • *****
  • Posts: 1154
Re: POS() function - what to use instead? (Podcast downloads)
« Reply #1 on: May 02, 2015, 02:36:14 pm »

Try ListItem([Name],1,;)

It says slit the field [Name] using ; as a separator and return the second instance
Logged

mabel

  • Recent member
  • *
  • Posts: 6
Re: POS() function - what to use instead? (Podcast downloads)
« Reply #2 on: May 02, 2015, 03:33:10 pm »

thanks but that doen't do what i need.

although there may be a different way to achieve what i want.

a more experianced programmer may understand things better.

I want to know the position of the colon, say position 5 so i can use that (5) in the right function.

the listitem functions returns the 'item' at a sepecific position.

thanks for the suggestion
Logged

Vincent Kars

  • Citizen of the Universe
  • *****
  • Posts: 1154
Re: POS() function - what to use instead? (Podcast downloads)
« Reply #3 on: May 02, 2015, 03:43:38 pm »

As there is no Pos() function one has to find other ways.

Quote
I only want data to the right of the first colon

That is exactly what this list function does
Logged

mabel

  • Recent member
  • *
  • Posts: 6
Re: POS() function - what to use instead? (Podcast downloads)
« Reply #4 on: May 02, 2015, 04:06:51 pm »

thanks

i didn't replace the semi-colon in the example you gave with a colon.

now it has a colon it returns the second item.

unfortunatly all it returns is the second item, not the complee text from the first colon to the end of the list.

e.g.

sci prog: Hr1: Smartphone HIV Test, Lost City Exploration, Mars Rover Budget

just returns Hr1

and not

Hr1: Smartphone HIV Test, Lost City Exploration, Mars Rover Budget
Logged

Vincent Kars

  • Citizen of the Universe
  • *****
  • Posts: 1154
Re: POS() function - what to use instead? (Podcast downloads)
« Reply #5 on: May 02, 2015, 04:20:53 pm »

Replace([Name], ListItem([Name],0,:))
Logged

mabel

  • Recent member
  • *
  • Posts: 6
Re: POS() function - what to use instead? (Podcast downloads)
« Reply #6 on: May 02, 2015, 04:44:58 pm »

thank you

i will go and work out how that works

thanks again
Logged
Pages: [1]   Go Up