String: Revision history

From ROBLOX Wiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

11 December 2024

  • curprev 00:1200:12, 11 December 2024 PRG talk contribs 3,555 bytes +3,555 Created page with "{{CatUp|Properties}} __TOC__ == Introduction == Strings are sequences of characters, letters, numbers, letters AND numbers, symbols, and so forth. A script of <pre> x = "Hi mom" y = "123456" z = "Bob12345" n = "abc!@#$%^&*()123456789" print (x) print (y) print (z) print (n) </pre> will print in the output bar Hi mom, 123456, Bob12345, and abc!@#$%^&*()123456789 . <b>Strings</b> differ from Numbers in that you can't allocate a name like "Bob" to numbers...."