DBE_MATCH
API Description
Table 1 provides all APIs supported by the DBE_MATCH package.
API |
Description |
---|---|
DBE_MATCH.EDIT_DISTANCE_SIMILARITY |
Compares the difference between two character strings (minimum steps of deletion, addition, and conversion) and normalizes the difference to a value ranging from 0 to 100. The value 100 indicates that the two character strings are the same, and the value 0 indicates that the two character strings are different. |
- DBE_MATCH.EDIT_DISTANCE_SIMILARITY
Compares the difference between two character strings (minimum steps of deletion, addition, and conversion) and normalizes the difference to a value ranging from 0 to 100. The value 100 indicates that the two character strings are the same, and the value 0 indicates that the two character strings are different. The DBE_MATCH.EDIT_DISTANCE_SIMILARITY function prototype is as follows:
1 2 3 4 |
DBE_MATCH.EDIT_DISTANCE_SIMILARITY( str1 IN text, str2 IN text )returns integer ; |
Parameter |
Description |
---|---|
str1 |
First character string. If the value is null, 0 is returned. |
str2 |
Second character string. If the value is null, 0 is returned. |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.