You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns the number of the character at which a specific character or text string is first found, reading left to right. Search is case-insensitive and accent sensitive.
9
+
Returns the number of the character at which a specific character or text string is first found, reading left to right. Search is case-insensitive, kanatype-insensitive, width-insensitive, and accent sensitive.
10
10
11
11
## Syntax
12
12
@@ -31,6 +31,8 @@ The number of the starting position of the first text string from the first char
31
31
32
32
- The search function is case insensitive. Searching for "N" will find the first occurrence of 'N' or 'n'.
33
33
34
+
- The search function is kanatype-insensitive, width-insensitive. Searching for "か" will find the first occurrence of 「か」 (hiragana), 「カ」 (katakana), or 「カ」 (half-width katakana).
35
+
34
36
- The search function is accent sensitive. Searching for "á" will find the first occurrence of 'á' but no occurrences of 'a', 'à', or the capitalized versions 'A', 'Á'.
35
37
36
38
- You can use the SEARCH function to determine the location of a character or text string within another text string, and then use the MID function to return the text, or use the REPLACE function to change the text.
0 commit comments