abdel
(Robot usa)
1
Hello Gyus,
I’m splitting an OCR extracted text, and i would to extract the adress of a place for example:
Laboratory xyz
Building Empire state building
9 av stalin 454 new York
or M. Jean Lenon
Building Empire state building
9 av stalin 454 new York
so the result will be : Building Empire state building
9 av stalin 454 new York
lakshman
(Ganta lakshman)
2
@abdel
If address will start always from second line then follow below steps to get address.
-
First assign entire string to one string variable and say “inputStr”
-
And then use below expression.
addressStr = inputStr.Replace(inputStr.Split(Environment.NewLine.ToCharArray)(0),"")