View Single Post
Old 02-26-2019, 09:35 AM   #395
ilovejedd
hopeless n00b
ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.
 
ilovejedd's Avatar
 
Posts: 5,110
Karma: 19597086
Join Date: Jan 2009
Location: in the middle of nowhere
Device: PW4, PW3, Libra H2O, iPad 10.5, iPad 11, iPad 12.9
Quote:
Originally Posted by Tanjamuse View Post
Couldn't it be a more generic thing to search for like in my screenshot, that way I could use it on more than one thing.
That's exactly what regex is for. This should be a thread on Library Management, though, and not in Job Spy plugin.

Assuming format is:
something something>something something something

Search
Code:
(.*)>(.*)
Replace
Code:
\1
results in "something something"



Code:
\2
results in "something something something"


Code:
\1, \2
results in "something something, something something something" (this gets split into two tags)

Last edited by ilovejedd; 02-26-2019 at 09:37 AM.
ilovejedd is offline   Reply With Quote