Hi All,
I have string parsing requirement as follows.
"Kannan ABCD Building" -> Source Text
I need to parse first 10 chars as Name.
remaining as Address.
Like
Kannan ABC as Name
But remaining as Address however like this
ABCD Building
That is I have to see if the 11 th charcter is part of particular word,If so I have to parse that too as Address
Could you please advice on how to achive this.
Currently I have following:
To Parse Name:
Left([SourceText],10)
To Parse Address:
IF Length([SourceText]) > 10 THEN
Substring([SourceText],10,Length([CompanyName])-1)
Thanks,
Krish