If this is the nparray i have
arr_str = np.array(['10', '100', '301', '23423'])
I want to convert into like this using slicing get the last char in the str a[-1] where a is element in nparray
arr_slice = np.array(['0', '0', '1', '3'])
just like how we can add numbers to each element of nparray like
arr_str.asType(int) + 5