04-14-2005, 06:32 PM
in the help it says
thanks...
Quote:Tipsbut i dont know where to put the +or -. where do i place them?
To append other string to the end or beginning of s, use + or - operator.
Example
str s = "notepad"
str ss.from(s ".exe")
now ss is "notepad.exe"
thanks...