I have a long string which have two fields with certain length and another field length is not known. So how to map bindy fixed length in this case? I have a string like this:
String info ="samulDavidThis is my story";
and my object is like this :
@DataField(pos=1, length=4)
private String name;
@DataField(pos=5, length=4)
private String lname;
private String story;
After position 9 the length of story is not fixed so can someone help me how to map for the story?