starts_with

From Kolmafia
Jump to navigation Jump to search

Function Syntax

boolean starts_withstring value, string prefix )

Checks whether a string starts with a prefix string. (case-sensitive)
  • value: String to check
  • prefix: Prefix to search for

This function was added in r17911.

Code Samples

The following function call will return true:

starts_with( "The quick brown fox jumps over the lazy dog", "The quick" );

See Also

contains_text() | ends_with() | index_of() | last_index_of() | starts_with()