You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're really wanting to get this, you could do something like this (if you don't want to change the source code). name_element would have to be an element with the NAME tag. There are a few ways you could get this:
name_element.get_value().split('/')[2].strip()
I would say it would be best to just make a get_suffix() method based on get_name(). It would basically be the same but you'd just want to strip out the 3rd split element instead of the first two.
Any recommendations for handling suffixes in names? Looks like the parser is just splitting on
/
, but I could be missing something.Currently the following names both return
Jane
andLane
:The text was updated successfully, but these errors were encountered: