Syntax
substring(text, startIndex, endIndex?)
text.substring(startIndex, endIndex?)
Examples
substring("Notion", 0, 3)
"Notion".substring(3)
More Info
substring(text, startIndex, endIndex?)
text.substring(startIndex, endIndex?)
substring("Notion", 0, 3)
"Notion".substring(3)