You are on page 1of 2

Reformat Component:

Parameters:
count
transform
select
output_index
output_indexes
reject threshold
loging

meta data changes or column level changes


row level operaations

9 - 8

5 - 10
10 - 5

Functions:
string_substring
string_length
string_index
string_concat

VAMSI KRISHNA KONDAPALLI


string_rindex

full_name - Siddarth Boyapati

1 - fname ,lname

fname
lname - 1 full name

string_substring(in.full_name,start,length)

ex:string_substring(Siddarth Boyapati,5,8) -Sidda

string_index(in.full_name,index_delimater)
ex:string_rindex(VAMSI KRISHNA KONDAPALLI SD," ")

Siddarth Boyapati

FNAME - >string_substring(Vamsi Boyapati,1,string_index(Siddarth Boyapati," ")-1)

LNAME - >string_substring(in.full_name,string_index(in.full_name," ")


+1,string_length(infull_name)

test_vector = string_split(VAMSI KRISHNA KONDAPALLI SD HGFGJ," ")


[VAMSI 0
KRISHNA 1
KONDAPALLI 2
SD 3
HGFGJ] 4

vectors

You might also like