qorf / quorum-language

The primary repository for the Quorum Programming Language
BSD 3-Clause "New" or "Revised" License
12 stars 6 forks source link

Primitive text (lower case) type will not function properly if using a ' . ' as the delimiter in the Split() action. #102

Open AtlasShrugged1 opened 8 months ago

AtlasShrugged1 commented 8 months ago

Example:

text test = "hello.hi.what.is.up.?"
Array<text> split = test:Split(".")
output split:GetSize() // returns 0

Text testText
testText:SetValue("hello.hi.what.is.up.?")
Array<text> splitText = testText:Split(".")
output splitText:GetSize() // returns 6