vote up 2 vote down star
1

I have a multiple line string like following:

END IF;

**EXECUTE IMMEDIATE ' CREATE INDEX #idx1
      ON somename ( row_id,
                           something)';**

   IF v_sys_error <> 0 THEN
      GOTO SQL_ERROR;

   END IF;

Edit: '**' is not in my string. I wanted to bold what i wanted to capture.

I wish to capture the part in bold (meaning everything from EXECUTE IMMEDIATE to next semicolon.

I have the following regex but how can i change it to work with multiple lines?

(EXECUTE).*;
flag

2 Answers

vote up 0 vote down check

(?m) makes the regex multiline:

/(?m)(EXECUTE).*?;/
link|flag
vote up 0 vote down

The following should work in Groovy.

def s = """
END IF;

EXECUTE IMMEDIATE ' CREATE INDEX #idx1
      ON somename ( row_id,
                           something)';

   IF v_sys_error <> 0 THEN
      GOTO SQL_ERROR;

   END IF;
"""

def expect = """
EXECUTE IMMEDIATE ' CREATE INDEX #idx1
      ON somename ( row_id,
                           something)';
""".trim()

def exe = s =~ /(?ms)(EXECUTE.*?;)/

assert expect == exe[0][1]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.