Regex - Extract value between tags

Hi Team,

How do i extract text between<Amount>and</Amount> When the content spans multiple lines

Thanks for the help,
Bob

Hi Bob,

Enable singleLine Option(or use (?s))

(?s)<Amount>(.*?)</Amount>
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.