Skip to content

tuple_strrchrTupleStrrchrTupleStrrchrtuple_strrchrtuple_strrchr🔗

Short description🔗

tuple_strrchrTupleStrrchrTupleStrrchrtuple_strrchrtuple_strrchr — Backward search for characters within a string tuple.

Signature🔗

tuple_strrchr( string String, string ToFind, out integer Position )void TupleStrrchr( const HTuple& String, const HTuple& ToFind, HTuple* Position )static void HOperatorSet.TupleStrrchr( HTuple stringVal, HTuple toFind, out HTuple position )def tuple_strrchr( string: MaybeSequence[str], to_find: MaybeSequence[str] ) -> Sequence[int]

def tuple_strrchr_s( string: MaybeSequence[str], to_find: MaybeSequence[str] ) -> intHerror tuple_strrchr( const char* String, const char* ToFind, Hlong* Position )

Herror T_tuple_strrchr( const Htuple String, const Htuple ToFind, Htuple* Position )

HTuple HTuple::TupleStrrchr( const HTuple& ToFind ) const

HTuple HTuple.TupleStrrchr( HTuple toFind )

Description🔗

tuple_strrchrTupleStrrchr searches within the strings of the input tuple StringstringValstring for the characters of the input tuple ToFindtoFindto_find. Both input tuples may only consist of strings. Otherwise tuple_strrchrTupleStrrchr returns an error. In any case backward search is used, i.e., every string is examined from its last to its first character. If the elements of ToFindtoFindto_find contain more than one character, only the first character of each element is considered for searching. If StringstringValstring contains only one string, all the characters defined in ToFindtoFindto_find are searched in this string. Thus, the output tuple consists of as many elements as ToFindtoFindto_find. Whenever a searched character has been found, the position of its first occurrence gets stored in the output tuple Positionpositionposition . If a character can not be found, -1 will be returned instead of its position (remark: the position starts at 0 for the first character of a string). If both input tuples show the same number of elements, the search is done elementwise. I.e., the first character of the first element of ToFindtoFindto_find is searched within the first string of StringstringValstring, the first character of the second element of ToFindtoFindto_find is searched within the second string of StringstringValstring and so on. The results of the elementwise searches are returned with Positionpositionposition that contains as many elements as StringstringValstring and ToFindtoFindto_find. If ToFindtoFindto_find only contains one string, its first character is searched within all strings of StringstringValstring. Thus, in this case Positionpositionposition consists of as many elements as StringstringValstring. If both input tuples contain more than one element and the number of elements differs for the input tuples, tuple_strrchrTupleStrrchr returns an error.

If either or both of the input tuples are empty, the operator returns an empty tuple.

Unicode code points versus bytes🔗

The position references Unicode code points. One Unicode code point may be composed of multiple bytes in the UTF-8 string. If the position should reference the raw bytes of the string, this operator can be switched to byte mode with set_system('tsp_tuple_string_operator_mode','byte'). If 'filename_encoding'"filename_encoding" is set to 'locale'"locale" (legacy), this operator always uses the byte mode.

For general information about string operations see Tuple / String Operations.

HDevelop In-line Operation🔗

HDevelop provides an in-line operation for tuple_strrchrTupleStrrchr, which can be used in an expression in the following syntax:

Position := strrchr(String, ToFind)

Execution information🔗

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Processed without parallelization.

Parameters🔗

StringstringValstring (input_control) string(-array) → (string)HTuple (HString)HTuple (string)MaybeSequence[str]Htuple (char*)

Input tuple with string(s) to examine.

ToFindtoFindto_find (input_control) string(-array) → (string)HTuple (HString)HTuple (string)MaybeSequence[str]Htuple (char*)

Input tuple with character(s) to search.

Positionpositionposition (output_control) integer(-array) → (integer)HTuple (Hlong)HTuple (int / long)Sequence[int]Htuple (Hlong)

Position of searched character(s) within the string(s).

Combinations with other operators🔗

Combinations

Alternatives

tuple_strchrTupleStrchr, tuple_strstrTupleStrstr, tuple_strrstrTupleStrrstr, tuple_strlenTupleStrlen, tuple_substrTupleSubstr, tuple_str_first_nTupleStrFirstN, tuple_str_last_nTupleStrLastN, tuple_splitTupleSplit, tuple_environmentTupleEnvironment

Module🔗

Foundation