INTERACT FORUM
More => Old Versions => JRiver Media Center 20 for Windows => Topic started by: 6233638 on November 18, 2014, 11:20:32 am
-
I realize that this is an odd one, but it seems like it should be a quick thing to fix?
If I use figure spaces in Delimit(), they are being ignored.
This example is not the expression I am trying to use, but the easiest way to demonstrate the problem:
If(Compare([Track #], >, 9), [Track #],
Delimit([Track #],,/ ))
This should prefix tracks 1-9 with a figure space.
A figure space has a width of one full character.
This means that the right-edge of 1-9 should be in line with the right edge of 10+ in a left-aligned column.
When using Delimit() though, the figure space is being completely ignored:
(http://abload.de/img/delimit-figure0mq4c.png)
If(Compare([Track #], >, 9), [Track #],
/ [Track #])
If I explicitly add a figure space in front of [Track #] rather than use Delimit(), it does work - though this is not suitable for the expression I am trying to write.
(http://abload.de/img/explicit-figurez6qn7.png)
If(Compare([Track #], >, 9), [Track #],
Delimit([Track #],,/ ))
It is possible to use a regular space with Delimit(), however this is not a full character wide and does not push the characters far enough over to the right:
(http://abload.de/img/delimit-spaceblq6f.png)