-
Notifications
You must be signed in to change notification settings - Fork 26
StartsWith
Shaun Lawrence edited this page Nov 4, 2020
·
2 revisions
Returns a boolean result indicating whether the supplied text
parameter starts with the supplied value
.
StartsWith(text, value)
The string
text to search inside.
Type | string |
Required | Yes |
The string
value to find at the start.
Type | string |
Required | Yes |
StartsWith("reading between the lines", "the")
Returns false
in this example because 'the' is not at the start.
- AddDays
- AddHours
- AddMilliseconds
- AddMinutes
- AddMonths
- AddSeconds
- AddYears
- DayOf
- HourOf
- MillisecondOf
- MinuteOf
- MonthOf
- SecondOf
- YearOf
- DaysBetween
- HoursBetween
- MillisecondsBetween
- MinutesBetween
- SecondsBetween