Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"from" question
#1
in the help it says
Quote:Tips
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"
but i dont know where to put the +or -. where do i place them?
thanks...
#2
Examples

Code:
Copy      Help
str s = "notepad"
str ss.from(s ".exe")
;now ss is "notepad.exe"

;The same with +:
ss=s
ss+".exe"


Forum Jump:


Users browsing this thread: 1 Guest(s)