Hello. Please help me create a regular expression. For example:
test = '12asiudas8787hajshd986q756tgs87ta7d6-12js01' test.scan(регулярное_выражение)
The result should be
["8787", "986", "756", "87", "7", "6", "12"]
In other words, a regular expression like / \ d + /, only so that numbers at the edges of the string are ignored.