B
B
Boris the Animal2015-11-05 10:54:48
Programming
Boris the Animal, 2015-11-05 10:54:48

Regular expression to separate a word with a digit. From "Hello1234" you need to get 2 matches Hello and 1234. Who knows how?

The task is to split a word with a number that is not separated by a space from the word.
Here you can test : www.regexr.com
This text can be used as a test
text
:

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ilya, 2015-11-05
@Casper-SC

It 's better to test here: regexstorm.net/tester , do you have C#?
To solve it, you just need to find joints of the form "not a number-digit", the simplest regular expression:
Then we make a replacement for:
And we get the desired gap.
b74421bd9ee34fd6bddb9e10a47b5559.png

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question