Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 393 Bytes

DeprecatedFind.md

File metadata and controls

29 lines (15 loc) · 393 Bytes

Using of the deprecated method "Find" (DeprecatedFind)

Description

Method "Find" is deprecated. Use "StrFind" instead.

Examples

Incorrect:

If Find(Employee.Name, "Boris") > 0 Then

EndIf; 

Correct:

If StrFind(Employee.Name, "Boris") > 0 Then

EndIf;