Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

GREP code for find and replace

New Here ,
Dec 21, 2022 Dec 21, 2022

I need a GREP code to change "end of paragraph" to "jump to next text frame"

TOPICS
Scripting
305
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Dec 21, 2022 Dec 21, 2022

You want to change all hard returns to frame breaks?

 

You don't need GREP. Choose the Text tab, then:

Find: ^p

Change to: ^R

 

~Barb

Translate
Community Expert ,
Dec 21, 2022 Dec 21, 2022

You want to change all hard returns to frame breaks?

 

You don't need GREP. Choose the Text tab, then:

Find: ^p

Change to: ^R

 

~Barb

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 21, 2022 Dec 21, 2022
LATEST

For the sake of completion, if you are interested in Grep you can use the following

Find:- \r

Change:- ~R

Bonus Tip:- You can find the codes for different characters by clicking on the @ button present against each Find/Change text box. See the screenshot below

Screenshot 2022-12-22 at 12.53.32 PM.pngexpand image

-Manan

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines