Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP RegEx

Former Member
0 Likes
443

Hi everybody,

the regex:

a.\c

is machting:

  1. aaaabcc
  2. aabbbbc
  3. aacc
  4. aaa2ccc

But why is aaa-2-ccc not matched?

I thought the dot does match any character including the minus:  -

Thanks Regards

Mario

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
402

I got it:

a.*c

I got it:

a.*c

1 REPLY 1
Read only

Former Member
0 Likes
403

I got it:

a.*c