Get-Non-Tabular-Text
Command Description
Get non-table text information from the Form OCR result
Command Prototype
arrayRet = Mage.ExtractOutsideTableText(jsonRet)
Parameter Description
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
jsonRet | True | expression | jsonRet | Output variables from "Screen Form OCR", "Image Form OCR", "PDF Form OCR" |
return
arrayRet,The variable used to save the output of the command.
Demo
Dim jsonRet='' // Table recognition result, you need to use the result of self-recognizing the specified picture for assignment
TracePrint "--------------------Get non-table text--------------------"
// --------------------------------------------------------
// [Remarks] Get non-table text
// Input parameters:
// jsonRet--table recognition result
// Output parameters:
// jsonRet: The variable to which the output of the function call is saved
// Command prototype: arrayRet = Mage.ExtractOutsideTableText(jsonRet)
// --------------------------------------------------------
arrayRet = Mage.ExtractOutsideTableText(jsonRet)
TracePrint(arrayRet)