Difference between revisions of "Manuals/calci/FIND"

From ZCubes Wiki
Jump to navigation Jump to search
Line 22: Line 22:
 
<div id="6SpaceContent" class="zcontent" align="left">
 
<div id="6SpaceContent" class="zcontent" align="left">
  
{| id="TABLE3" class="SpreadSheet blue"
 
|- class="even"
 
| class="ssh1_f" |UNITED STATES OF AMERICA
 
| class="  " |
 
| class="  " |
 
 
|- class="odd"
 
| class="ssh1_f" |30338
 
| class="  " |
 
| class="  " |
 
 
|- class="even"
 
| class="ssh1_f" |student
 
| class="  " |
 
| class="  " |
 
 
|- class="odd"
 
| class="ssh1_f" |Personal
 
| class="  " |
 
| class="  " |
 
 
|}
 
 
{| id="TABLE3" class="SpreadSheet blue"
 
{| id="TABLE3" class="SpreadSheet blue"
 
|- class="even"
 
|- class="even"
 
|  
 
|  
 
! A
 
! A
! B
 
! C
 
! D
 
 
|-
 
|-
 
|- class="odd"
 
|- class="odd"
Line 65: Line 40:
 
|Personal
 
|Personal
 
|}
 
|}
 +
 
==See Also==
 
==See Also==
 
*[[Manuals/calci/FINDB | FINDB ]]
 
*[[Manuals/calci/FINDB | FINDB ]]

Revision as of 11:32, 5 June 2015

FIND (txt,txtst,n)


  • is the text you want to find.
  • is the text or string that contains the text you want to find.
  • is the number to start the search.

Description

  • FIND is used to locate the starting position of a search text in another string. ie, it will search the text inside another string and will return the starting position of the text inside the string.
  • First character in is character number 1. By default is assumed to be 1 and is optional.
  • FIND is used with languages that use the single-byte character set(SBCS).
  • FINDB is used with languages that use the double-byte character set (DBCS).
  • The default language of your computer will result in the return value
  1. counts each character. It wont depend on default language setting.
  2. counts double-byte character as 2.
  • and are case sensitive. It won't allow wildcard characters.
  • If is "" (NULL), FIND matches with the first character in the search string.

It will return ERROR when:

1. must not be wildcard characters.
2.If  is not there in 
3.If  is greater than the length of .

Examples

A
1 UNITED STATES OF AMERICA
2 30338
3 student
4 Personal

See Also

References

Find