OK, I've added PostScan to my beta repo:
http://srvrpowerctrl.googlecode.com/svn/beta.xml

PostScan is now installable via the extension downloader.

New in the latest version:

Added PSMATCH SQLite helper function.  PSMATCH is useful in the WHERE
clause in queries.  E.G.:

Remove any prefix in the form of A_ or Zzz_ from genre names:

Code:
--------------------
    
  UPDATE genres
  set name = psreplace(name, 's/^(?i)([[:alpha:]])\1+_(.*)$/"$2"/')
  WHERE namesort = psmatch(namesort, 'm/^([[:alpha:]])\1* .*$/');
  
--------------------


Help file updated with info on PSMATCH.


-- 
gharris999
------------------------------------------------------------------------
gharris999's Profile: http://forums.slimdevices.com/member.php?userid=115
View this thread: http://forums.slimdevices.com/showthread.php?t=79778

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to