4f97fd55a5
* Fix: Preventing addition of any empty cells with whitespaces while importing Xml data with Tests : Issue #1095 * Chore: Using 'CharMatcher' to match whitespace pattern instead of using custom regex : Issue #1095
25 lines
653 B
XML
25 lines
653 B
XML
<?xml version = "1.0"?>
|
|
<library>
|
|
<book id=" 1 ">
|
|
<author>
|
|
<author-name> author1 </author-name>
|
|
<author-dob> a date </author-dob>
|
|
</author>
|
|
<genre> genre1 </genre>
|
|
</book>
|
|
<book id=" 2 ">
|
|
<author>
|
|
<author-name> author2 </author-name>
|
|
<author-dob> a date2 </author-dob>
|
|
</author>
|
|
<genre> genre2 </genre>
|
|
</book>
|
|
<book id=" 3 ">
|
|
<author>
|
|
<author-name> author3 </author-name>
|
|
<author-dob> a date3 </author-dob>
|
|
</author>
|
|
<genre> genre3 </genre>
|
|
</book>
|
|
</library>
|