This question might be dumb, I'm new to regex and I am a bit stuck.
I have multiple strings, with numbers and words in them. I want to match only the words, if they do not contain an integer.
12 This Is A Test 9eifEf 12
From that, I would like to match This Is A Test
.
11 Stack 21deEh 12
From that, I would like to match Stack
.
Using RegExr, I came up with the expression .[a-z]
, which looked like it worked, but it matched a maximum of 2 letters at a time, and not the spaces.
Sorry for the code request. I do not need anything more than the pattern. I appreciate any help.