Let's say you have a string like this: 4arb
How can you sort that to become: 4abr
I've already looked at PHP: How to sort the characters in a string? and I know that using sort() would be an option, but I don't see how to incorporate the number part into this.
Ideas?