Skip to main content
j.khakase
Inspiring
March 14, 2023
Answered

How to target 2 digit paragraph only

  • March 14, 2023
  • 1 reply
  • 389 views

Dear All,

I am looking the GREP code, which will target to select only 2 digit paragraph only. My entered code search in both number, expecting to target only 2 digit paragraph. Please help

 

This topic has been closed for replies.
Correct answer Manan Joshi

Start your regex with ^

^ means to search from the start of the string so the second match you get would be avoided

-Manan

1 reply

Manan JoshiCommunity ExpertCorrect answer
Community Expert
March 14, 2023

Start your regex with ^

^ means to search from the start of the string so the second match you get would be avoided

-Manan

-Manan
j.khakase
j.khakaseAuthor
Inspiring
March 14, 2023

Perfect!, It worked, thank you so much