Hi Eric, Thank you so much and thank God I raised my inquiry here, because I was going to give up and prepare to use complicated export/import procedures to modify an offline TiddlyWiki HTML file and then import the tiddlers back to TSpace... And your explanation saved my day. Thanks!
Eric Shulman於 2012年11月7日星期三UTC+8上午11時40分41秒寫道: > > > I was trying to use TiddlerTweakerPlugin to replace > ===<linebreak>(\+\+\+\[SomeText\].+?===) > > as the regexp syntax > \1<linebreak>=== > > > However, TiddlerTweakerPlugin does not seem to recognize the grouping > > syntax of regexp to use the shortcut "\1" to represent the whole string > to > > be kept, and in the result of replacement, "\1" appears literally. But I > > hoped that I can get > > You were VERY close! Instead of "\1" , "\2", etc., javascript regexp > uses "$1", "$2", etc. as replacement markers > > Thus: > ===<linebreak>(\+\+\+\[SomeText\].+?===) > replace with: > $1<linebreak>=== > > enjoy, > -e > Eric Shulman > TiddlyTools / ELS Design Studios > > HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"... > http://www.TiddlyTools.com/#Donations > > Professional TiddlyWiki Consulting Services... > Analysis, Design, and Custom Solutions: > http://www.TiddlyTools.com/#Contact > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To view this discussion on the web visit https://groups.google.com/d/msg/tiddlywiki/-/TX6DtDKG3OEJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

