MCPcopy Create free account
hub / github.com/apache/arrow / strpos_utf8_utf8

Function strpos_utf8_utf8

cpp/src/gandiva/precompiled/string_ops.cc:1799–1803  ·  view source on GitHub ↗

Search for a string within another string Same as "locate(substr, str)", except for the reverse order of the arguments.

Source from the content-addressed store, hash-verified

1797// Search for a string within another string
1798// Same as "locate(substr, str)", except for the reverse order of the arguments.
1799FORCE_INLINE
1800gdv_int32 strpos_utf8_utf8(gdv_int64 context, const char* str, gdv_int32 str_len,
1801 const char* sub_str, gdv_int32 sub_str_len) {
1802 return locate_utf8_utf8_int32(context, sub_str, sub_str_len, str, str_len, 1);
1803}
1804
1805// Search for a string within another string
1806FORCE_INLINE

Callers 1

TESTFunction · 0.85

Calls 1

locate_utf8_utf8_int32Function · 0.85

Tested by 1

TESTFunction · 0.68