```python >>> ak.iterable_str_to_array_1d(['', '3']) array([0, 3]) >>> ak.iterable_str_to_array_1d(['', '3'], dtype=int) array([0, 3]) ```