String Operations
Substring, concat, search, replace operations.
stringsoperationsUpdated 2025-09-01
Common
- length(), charAt(i)
- substring(a,b)
- indexOf(x)
- replace(a,b)
Performance
- Beware repeated concatenation
Substring, concat, search, replace operations.