hey the videos are really great ! thanks alot! i have a question that drives me crazy a long time , i hope maybe you have an answer : is there is any way i can use find/change / grep expression to query a range of values in styles ? for instance : find all the appearnce of skew or right indent in range between 1 - 200 --- choose them and then give them a certin p.style or c.style ??? i was looking up for this thing anywhere ..maybe you know a way ?
GREP isn't able to find a range of numbers, like 1-200...though there may be a script out there for that. Indy's Number Generator works with number ranges...it might do what you want.
This is great, but I need it to search two digit numbers: 10-69. With character classes it will only search for individual digits. Does anyone know what to do?
If you just need to search numbers that are just two digits: \b\d{2}\b (that shows any digit exactly 2 times and the \b set the boundaries). If you need to search for the 2 digit numbers from 10-69, use: \b(1[0-9]|2[0-9]|3[0-9]|4[0-9]|5[0-9]|6[0-9])\b
I’m still here and replying, just need to start up content again. I do a lot of the videos over on the InDesignSecrets channel though. I’m looking forward to creating some longer content here on my personal channel. Thanks for watching!
Such a helpful channel of videos! Thank you so much!! :D
You're very welcome!
Perfect , these are very important elements
Thank you so much
Always glad to share...and thank you (as always) for watching and commenting!
hey the videos are really great ! thanks alot!
i have a question that drives me crazy a long time , i hope maybe you have an answer :
is there is any way i can use find/change / grep expression to query a range of values in styles ?
for instance : find all the appearnce of skew or right indent in range between 1 - 200 --- choose them and then give them a certin p.style or c.style ???
i was looking up for this thing anywhere ..maybe you know a way ?
GREP isn't able to find a range of numbers, like 1-200...though there may be a script out there for that. Indy's Number Generator works with number ranges...it might do what you want.
great, thanks
Thank you for the video, How to change the number 0 to "-", but the number 10, 100 the number 0 doesn't change
If you only want the 0 to change when it’s by itself, put \b before and after the zero.
\b0\b
This is great, but I need it to search two digit numbers: 10-69. With character classes it will only search for individual digits. Does anyone know what to do?
If you just need to search numbers that are just two digits: \b\d{2}\b (that shows any digit exactly 2 times and the \b set the boundaries).
If you need to search for the 2 digit numbers from 10-69, use: \b(1[0-9]|2[0-9]|3[0-9]|4[0-9]|5[0-9]|6[0-9])\b
Doesnt look like your active on this channel anymore.
But great content and very good info. Thanks
I’m still here and replying, just need to start up content again. I do a lot of the videos over on the InDesignSecrets channel though. I’m looking forward to creating some longer content here on my personal channel. Thanks for watching!