^.{13} is a "regular expression" that matches the first 13 characters of, in this case, the title. They're replaced by nothing ("" -- quote marks with nothing in them).
Thank you. That was some very useful advise. I downloaded CARP. I was wonder whether it Is possible to omit the first "n" characters of any link which is coming in? suppose the link which is coming in is like "Latest link: link 1" where "Latest link" text prefixes every link. Is there any way of tailoring every link to omit the first n characters?
Yes, if you have the Replace Text plugin:
CarpLoadPlugin('replacetext.php');
ReplaceTextConf2(1, 'title', 1, "^.{13}", "");
^.{13} is a "regular expression" that matches the first 13 characters of, in this case, the title. They're replaced by nothing ("" -- quote marks with nothing in them).
GeckoTribe 1 year ago
Thank you. That was some very useful advise. I downloaded CARP. I was wonder whether it Is possible to omit the first "n" characters of any link which is coming in? suppose the link which is coming in is like "Latest link: link 1" where "Latest link" text prefixes every link. Is there any way of tailoring every link to omit the first n characters?
jaisonmathewbaby 1 year ago
Comment removed
jaisonmathewbaby 1 year ago