otld.append.combine_appended_files.reorder_alpha_numeric¶
- otld.append.combine_appended_files.reorder_alpha_numeric(values: list | Series) list ¶
Sort alphanumeric values
- Args:
values (list | pd.Series): A list of alphanumeric values.
- Returns:
list: A sorted list of alphanumeric values
- Examples:
>>> reorder_alpha_numeric(["1", "11", "2", "2b", "1a", "2a"]) ["1", "1a", "2", "2a", "2b", "11"]