Import mojo
Class MyGame Extends App
Method OnCreate()
SetUpdateRate(1)
Local a:String[]
Local b:String="This is a test man"
a = b.Split(" ")
DebugLog "variable b is : "+b
DebugLog "We split variable b at the ' ' character"
For Local i=0 Until a.Length
DebugLog a[i]
Next
a = New String[1]
b="0,1,2,3,4,5"
a = b.Split(",")
DebugLog "variable b is : "+b
DebugLog "We split the variable b at the ',' character"
For Local i=0 Until a.Length
DebugLog a[i]
next
End Method
Method OnUpdate()
End Method
Method OnRender()
End Method
End Class
Function Main()
New MyGame()
End Function
Artificial intelligence/templates/examples/rts/rpg/strategy ect. in MonkeyX/CerberusX language. You can download the free version of MonkeyX from itch.io or Cerberus-x.com The Flash applets will stop working in around 2020.
Monday, December 19, 2016
Monkey-X - Beginners - String - Split - code example
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.