Testing…. regular expressions!
by BMG on Friday, March 19th, 2010 | No Comments
DEMO_REGEX_TOY is a very useful report when you need to find a exact regular expression that suits your needs.
Here’s a small example that you can try to see how cool it is:
Imagine that you want to find a number on a string, no matter what position. To do this try:
- Enter SE38 t-code, and run report DEMO_REGEX_TOY
- In ‘Text’ input box write ‘My Name is 007′
- In ‘Regex’ input field write ‘([0-9]+)’ (your regular expression) and press <ENTER>
Result: You’ll check the 007 (the number!) highlighted and the first submatch field cointaing the value you need.

