TRUECALC
Functions

FINDB

Case-sensitive byte-position search

Try it

When to use it

When should I use FINDB instead of FIND?

Use FINDB when working with multibyte character sets (CJK text) and you need a byte-position rather than a character-position, or when conforming to byte-indexed string operations.

Used in

operations

Syntax

FINDB(find_text, within_text, [start_num])

Examples

=FINDB("新","农历新年") // => 5
=FINDB("新","农历新年",2) // => 5
=FINDB("n","printing") // => 4

On this page