Parse a FlatFile with Multiline using BizTalk -


my file contains data like:

first name:     ahmed  last name:  nasser city:   giza 

i created schema parse file, element store line.. such as

<fname>first name:  ahmed</fname> <lname>last name:   nasser</lname> 

i want element store value without label ..to this:

<fname>ahmed</fname> <lname>nasser</lname> 

how using flate file schema.. biztalk?

biztalk flat file schema wizard you. can use text file copied question "instance file" (1. page of wizard). tell wizard file delimited 1 (3. page of wizard) , delimiter ":" (4. page of wizard). on 5. page of wizard can set labels ignored , that's all.

if records of input flat file present in 1 line, think best if remove labels file. can creating custom pipeline component, using c# super easy. after removing labels file consist of pure data separated : , format flat file schema.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -