Hello i want to get this String but only the letters without the first part,
i try with this but [A-Z a-z] in my expression but i need only the letters
in my case i need only this
only the letters with out the first part
Hello i want to get this String but only the letters without the first part,
i try with this but [A-Z a-z] in my expression but i need only the letters
in my case i need only this
If you are trying to match the pattern : any number of characters, followed by a space, followed by any number of letters. Then the regex will be (.*)\s(\w*)
But maybe you are trying to do something else. It’s not very clear from your question. Please also try using the Matches activity to build a regex. It is very intuitive and allows you to build your custom regex.
Hi,
Do you want to get " Abcd" in the above sample?
If so, the following pattern will work.
" [A-Za-z]+"
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.