Beginner
Strings
Concatenation, string functions, contains checks, and the quote constant.
examples/strings.bubble-- String operations in Bubble say "=== String Concatenation ==="put "Hello" into greetingput "World" into target -- & concatenates directlysay greeting & target -- && concatenates with a spacesay greeting && target -- Building stringsput greeting & ", " & target & "!" into messagesay message say ""say "=== String Functions ==="put "Hello, Bubble World!" into text say "Original:" && textsay "Length:" && length(text)say "Uppercase:" && uppercase(text)say "Lowercase:" && lowercase(text) say ""say "=== More String Functions ==="say "Reverse:" && reverse("Bubble")say "Trim:" && trim(" hello ")say "Replace:" && replace("Hello World", "World", "Bubble") say ""say "=== String Checks ==="say "Contains 'Bubble':" && (text contains "Bubble")say "Contains 'Python':" && (text contains "Python") say ""say "=== Quote Constant ==="say "She said" && quote & "hello" & quote