@@ -640,13 +640,15 @@ /*! * @brief Returns the range of the string. * * @param string The string to search - * @param options Options modifying search behaviour. - * Possible values: - * * OF_STRING_SEARCH_BACKWARDS + * @param options Options modifying search behaviour.@n + * Possible values are: + * Value | Description + * ---------------------------|------------------------------- + * OF_STRING_SEARCH_BACKWARDS | Search backwards in the string * @return The range of the first occurrence of the string or a range with * OF_NOT_FOUND as start position if it was not found */ - (of_range_t)rangeOfString: (OFString*)string options: (int)options; @@ -653,13 +655,15 @@ /*! * @brief Returns the range of the string in the specified range. * * @param string The string to search - * @param options Options modifying search behaviour. - * Possible values: - * * OF_STRING_SEARCH_BACKWARDS + * @param options Options modifying search behaviour.@n + * Possible values are: + * Value | Description + * ---------------------------|------------------------------- + * OF_STRING_SEARCH_BACKWARDS | Search backwards in the string * @param range The range in which to search * @return The range of the first occurrence of the string or a range with * OF_NOT_FOUND as start position if it was not found */ - (of_range_t)rangeOfString: (OFString*)string @@ -740,11 +744,11 @@ * string in the specified range with the specified replacement. * * @param string The string to replace * @param replacement The string with which it should be replaced * @param options Options modifying search behaviour. - * Possible values: + * Possible values are: * * None yet * @param range The range in which to replace the string * @return A new string with the occurrences of the specified string replaced */ - (OFString*)stringByReplacingOccurrencesOfString: (OFString*)string @@ -825,13 +829,15 @@ /*! * @brief Separates an OFString into an OFArray of OFStrings. * * @param delimiter The delimiter for separating - * @param options Options according to which the string should be separated. - * Possible values: - * * OF_STRING_SKIP_EMPTY + * @param options Options according to which the string should be separated.@n + * Possible values are: + * Value | Description + * ---------------------|---------------------- + * OF_STRING_SKIP_EMPTY | Skip empty components * @return An autoreleased OFArray with the separated string */ - (OFArray*)componentsSeparatedByString: (OFString*)delimiter options: (int)options;