Search for a string within another string Same as "locate(substr, str)", except for the reverse order of the arguments.
| 1832 | // Search for a string within another string |
| 1833 | // Same as "locate(substr, str)", except for the reverse order of the arguments. |
| 1834 | FORCE_INLINE |
| 1835 | gdv_int32 strpos_utf8_utf8(gdv_int64 context, const char* str, gdv_int32 str_len, |
| 1836 | const char* sub_str, gdv_int32 sub_str_len) { |
| 1837 | return locate_utf8_utf8_int32(context, sub_str, sub_str_len, str, str_len, 1); |
| 1838 | } |
| 1839 | |
| 1840 | // Search for a string within another string |
| 1841 | FORCE_INLINE |