Skip to main content
j.khakase
Inspiring
March 14, 2023
해결됨

How to target 2 digit paragraph only

  • March 14, 2023
  • 1 답변
  • 391 조회

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

 

이 주제는 답변이 닫혔습니다.
최고의 답변: 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 답변

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.khakase작성자
Inspiring
March 14, 2023

Perfect!, It worked, thank you so much