StringExtensions extension

on

Properties

capitalize String
final helloWorld = 'hello world'.capitalize; -> 'Hello world'
no setter
dropFirstWord String
This drops the first word of a sentence.
no setter
firstWord String?
This returns the first word of a sentence.
no setter
isNonNumeric bool
Logical inverse of String.isNumeric
no setter
isNumeric bool
Checks if this String contains only numeric characters.
no setter
withNoEmptySpaces String
Applies a RegEx to remove all empty spaces from this String.
no setter