Jump to content

Tokenize a string: Difference between revisions

Line 194:
 
alert( "Hello,How,Are,You,Today".split(",").join(".") );
 
==[[MAXScript]]==
[[Category:MAXScript]]
output = ""
for word in (filterString "Hello,How,Are,You,Today" ",") do
(
output += (word + ".")
)
format "%\n" output
 
==[[Perl]]==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.