I have few items in my listbox like:
monday1.something.txt
saturday2.something.txt
sunday4.something.txt
......
My question for all good people here is:
How can I get new string from each item in the listbox that contain characters until "."(dot). for example, I need this:
newstring1 = monday1,
newstring2 = saturday2,
newstring = sunday4 ...
and so on.
Thanks, Rado

