Hello, i read a variable from some source,
like suppse, SongList(3)=About Chiniot.About
I wanted to Write the part before the "." and after the "." seperatly,
i tried
Left(SongList(i), InStrRev(SongList(i), ".") - 1)
|
Works flowlessly... but when i tried writing the right part
Right(SongList(i), InStrRev(SongList(i), ".") - 1)
|
It gets crazy 
like here is what i got when i try priting from right...
MyCrazyResult wrote:
Variable Value: Home.Home Output:.Home Variable Value: About Chiniot.About Output: Chiniot.About Variable Value: About Moeez.Moeez Output: Moeez.Moeez Variable Value: Photos From Chiniot.Photos Output: From Chiniot.Photos Variable Value: Historic Background.History Output:c Background.History Variable Value: Site Creadits.Creadits Output:adits.Creadits
|
what's happening 