I want to do different iteration to elements in single array.
arr = ["1111", "2221", "7ext", "3345"] I want to run a block that would slice only the element that contains letters and elements with no letter remain the same. The result would be following
arr = ["1111", "2221", "7", "e", "x", "t", "3345"] I do not know neither how many elements would be in array or order. All elements are strings.