I was looking for a way to replace instances of
[number][char] or [char][number] like it occurs in mathematical expressions (e.g. 4x + 20y)
with [number]*[char] or [char]*[number],
I have two problems with that
- How do i reuse the found number and char => `replaceAll("[0-9999][a-z]", "[1]*[2]")` ?
- Whats the best way to represent a number because i can be more than just a digit
Thanks for any help