[tw5] Re: search and replace in tiddlers

2019-02-20 Thread Mohammad
This is now partially works in TW-Commander,

see

https://groups.google.com/d/msg/tiddlywiki/w9Bv-WulKw8/CYf9D4H6BgAJ

Best
Mohammad

On Thursday, February 14, 2019 at 8:10:59 PM UTC+3:30, Mark S. wrote:
>
> Here's a javascript macro you can play with in a safe place. It's just a 
> think javascript macro wrapped around the underlying javascript system, so 
> I'm sure it could be improved.
>
> Invoke like:
>
> <>
>
> Parameters *regtext* (which can be a regular expression, but also plain 
> text if it's been escaped), *subtext* (the text to replace found text 
> with. Note $1,$2... for replacing groups in regtext), and the *text* 
> itself.
>
> -- Mark
>
> On Wednesday, February 13, 2019 at 10:34:08 PM UTC-8, Mohammad wrote:
>>
>> Yep,
>>  That is really handy! Specially when you write codes
>>
>> Thanks Tnoy for the hint!
>>
>> Cheers
>> Mohammad
>>
>> On Thursday, February 14, 2019 at 9:39:51 AM UTC+3:30, tony wrote:
>>>
>>> The command mode from the CodeMirror plugin with CodeMirror Keymap: vim 
>>>
>>> works quite lovely with
>>>
>>> :%s/foo/bar/gc
>>>
>>> Even more delicious is that yanks work across the tiddlers, ie yy to 
>>> yank a line in one tiddler, open a different tiddler and p to paste
>>>
>>> Heck, even :sort to sort all lines in the tiddlers work
>>>
>>> Good stuff!
>>>
>>> Best,
>>> tony
>>>
>>> On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:

 Is there any way to search and replace in
 Tiddlers

- text
- field value

 for example search foo and replace with bar?


 --Mohammad

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e7c5b29a-8077-4854-9c03-ef127bb70c66%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread Mohammad
Hi Josiah,
 I am experimenting to see how Commander can search in tiddlers meet some 
criteria and search/replace subtexts!
Also for partial renaming for example change a set of tiddlers all have in 
their name the word `exmp` with a word `sample`


--Mohammad

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3521fbcc-1c2b-48cf-bca7-cbd558e85046%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread @TiddlyTweeter
Though I don't grasp the mechanics I can see this is exciting !

On Thursday, 14 February 2019 20:54:02 UTC+1, Mohammad wrote:
>
> Got it!
>
> On Thursday, February 14, 2019 at 11:17:24 PM UTC+3:30, Mark S. wrote:
>>
>> Do it as a macrocall:
>>
>> <$macrocall $name="regexpsub" regtext="Hello" subtext="Goodbye" 
>> text={{HelloThere}}/>
>>
>> -- Mark
>>
>> On Thursday, February 14, 2019 at 11:11:20 AM UTC-8, Mohammad wrote:
>>>
>>> Hi Mark,
>>>  It works great! Some question:
>>>
>>> The macro has three parameters
>>>
>>>- text
>>>- subtext
>>>- regtext
>>>
>>> Is it possible to send a whole tiddler to macro, e.g 
>>> text=<> ?
>>>
>>> does regtext accept the same JS regexp expression?
>>>
>>> --Mohammad
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/32dbf0da-5372-4f7d-837d-bbf98577eb5c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread Mohammad
Got it!

On Thursday, February 14, 2019 at 11:17:24 PM UTC+3:30, Mark S. wrote:
>
> Do it as a macrocall:
>
> <$macrocall $name="regexpsub" regtext="Hello" subtext="Goodbye" 
> text={{HelloThere}}/>
>
> -- Mark
>
> On Thursday, February 14, 2019 at 11:11:20 AM UTC-8, Mohammad wrote:
>>
>> Hi Mark,
>>  It works great! Some question:
>>
>> The macro has three parameters
>>
>>- text
>>- subtext
>>- regtext
>>
>> Is it possible to send a whole tiddler to macro, e.g 
>> text=<> ?
>>
>> does regtext accept the same JS regexp expression?
>>
>> --Mohammad
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/13471337-cc0f-48e0-b5d3-85889180a789%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread 'Mark S.' via TiddlyWiki
Do it as a macrocall:

<$macrocall $name="regexpsub" regtext="Hello" subtext="Goodbye" 
text={{HelloThere}}/>

-- Mark

On Thursday, February 14, 2019 at 11:11:20 AM UTC-8, Mohammad wrote:
>
> Hi Mark,
>  It works great! Some question:
>
> The macro has three parameters
>
>- text
>- subtext
>- regtext
>
> Is it possible to send a whole tiddler to macro, e.g 
> text=<> ?
>
> does regtext accept the same JS regexp expression?
>
> --Mohammad
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0add050b-3b11-49cf-b49e-f41495f78fda%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread Mohammad
If I can send rexexp pattern, then can I extract few character of some 
words or phrases?


On Thursday, February 14, 2019 at 8:10:59 PM UTC+3:30, Mark S. wrote:
>
> Here's a javascript macro you can play with in a safe place. It's just a 
> think javascript macro wrapped around the underlying javascript system, so 
> I'm sure it could be improved.
>
> Invoke like:
>
> <>
>
> Parameters *regtext* (which can be a regular expression, but also plain 
> text if it's been escaped), *subtext* (the text to replace found text 
> with. Note $1,$2... for replacing groups in regtext), and the *text* 
> itself.
>
> -- Mark
>
> On Wednesday, February 13, 2019 at 10:34:08 PM UTC-8, Mohammad wrote:
>>
>> Yep,
>>  That is really handy! Specially when you write codes
>>
>> Thanks Tnoy for the hint!
>>
>> Cheers
>> Mohammad
>>
>> On Thursday, February 14, 2019 at 9:39:51 AM UTC+3:30, tony wrote:
>>>
>>> The command mode from the CodeMirror plugin with CodeMirror Keymap: vim 
>>>
>>> works quite lovely with
>>>
>>> :%s/foo/bar/gc
>>>
>>> Even more delicious is that yanks work across the tiddlers, ie yy to 
>>> yank a line in one tiddler, open a different tiddler and p to paste
>>>
>>> Heck, even :sort to sort all lines in the tiddlers work
>>>
>>> Good stuff!
>>>
>>> Best,
>>> tony
>>>
>>> On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:

 Is there any way to search and replace in
 Tiddlers

- text
- field value

 for example search foo and replace with bar?


 --Mohammad

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/53c60d6b-a750-4786-9347-fc6804c281cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread Mohammad
Hi Mark,
 It works great! Some question:

The macro has three parameters

   - text
   - subtext
   - regtext

Is it possible to send a whole tiddler to macro, e.g 
text=<> ?

does regtext accept the same JS regexp expression?

--Mohammad

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5a4dce60-831f-49d7-814c-9e6b31d27177%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread Mohammad
Many thanks Mark,
 I will return to you with my evaluation result.

Cheers
Mohammad

On Thursday, February 14, 2019 at 8:10:59 PM UTC+3:30, Mark S. wrote:
>
> Here's a javascript macro you can play with in a safe place. It's just a 
> think javascript macro wrapped around the underlying javascript system, so 
> I'm sure it could be improved.
>
> Invoke like:
>
> <>
>
> Parameters *regtext* (which can be a regular expression, but also plain 
> text if it's been escaped), *subtext* (the text to replace found text 
> with. Note $1,$2... for replacing groups in regtext), and the *text* 
> itself.
>
> -- Mark
>
> On Wednesday, February 13, 2019 at 10:34:08 PM UTC-8, Mohammad wrote:
>>
>> Yep,
>>  That is really handy! Specially when you write codes
>>
>> Thanks Tnoy for the hint!
>>
>> Cheers
>> Mohammad
>>
>> On Thursday, February 14, 2019 at 9:39:51 AM UTC+3:30, tony wrote:
>>>
>>> The command mode from the CodeMirror plugin with CodeMirror Keymap: vim 
>>>
>>> works quite lovely with
>>>
>>> :%s/foo/bar/gc
>>>
>>> Even more delicious is that yanks work across the tiddlers, ie yy to 
>>> yank a line in one tiddler, open a different tiddler and p to paste
>>>
>>> Heck, even :sort to sort all lines in the tiddlers work
>>>
>>> Good stuff!
>>>
>>> Best,
>>> tony
>>>
>>> On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:

 Is there any way to search and replace in
 Tiddlers

- text
- field value

 for example search foo and replace with bar?


 --Mohammad

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ac28b930-5c71-462a-83af-f1e6ddb93e56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-14 Thread 'Mark S.' via TiddlyWiki
Here's a javascript macro you can play with in a safe place. It's just a 
think javascript macro wrapped around the underlying javascript system, so 
I'm sure it could be improved.

Invoke like:

<>

Parameters *regtext* (which can be a regular expression, but also plain 
text if it's been escaped), *subtext* (the text to replace found text with. 
Note $1,$2... for replacing groups in regtext), and the *text* itself.

-- Mark

On Wednesday, February 13, 2019 at 10:34:08 PM UTC-8, Mohammad wrote:
>
> Yep,
>  That is really handy! Specially when you write codes
>
> Thanks Tnoy for the hint!
>
> Cheers
> Mohammad
>
> On Thursday, February 14, 2019 at 9:39:51 AM UTC+3:30, tony wrote:
>>
>> The command mode from the CodeMirror plugin with CodeMirror Keymap: vim 
>>
>> works quite lovely with
>>
>> :%s/foo/bar/gc
>>
>> Even more delicious is that yanks work across the tiddlers, ie yy to yank 
>> a line in one tiddler, open a different tiddler and p to paste
>>
>> Heck, even :sort to sort all lines in the tiddlers work
>>
>> Good stuff!
>>
>> Best,
>> tony
>>
>> On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:
>>>
>>> Is there any way to search and replace in
>>> Tiddlers
>>>
>>>- text
>>>- field value
>>>
>>> for example search foo and replace with bar?
>>>
>>>
>>> --Mohammad
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fd36fc43-346c-40d6-a0e0-fe4fb0382e92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


$__MAS_macros_regexpsub.json
Description: application/json


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread Mohammad
Yep,
 That is really handy! Specially when you write codes

Thanks Tnoy for the hint!

Cheers
Mohammad

On Thursday, February 14, 2019 at 9:39:51 AM UTC+3:30, tony wrote:
>
> The command mode from the CodeMirror plugin with CodeMirror Keymap: vim 
>
> works quite lovely with
>
> :%s/foo/bar/gc
>
> Even more delicious is that yanks work across the tiddlers, ie yy to yank 
> a line in one tiddler, open a different tiddler and p to paste
>
> Heck, even :sort to sort all lines in the tiddlers work
>
> Good stuff!
>
> Best,
> tony
>
> On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:
>>
>> Is there any way to search and replace in
>> Tiddlers
>>
>>- text
>>- field value
>>
>> for example search foo and replace with bar?
>>
>>
>> --Mohammad
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b22a599e-8229-44e0-9f2a-11fa7c01a145%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread tony
The command mode from the CodeMirror plugin with CodeMirror Keymap: vim 

works quite lovely with

:%s/foo/bar/gc

Even more delicious is that yanks work across the tiddlers, ie yy to yank a 
line in one tiddler, open a different tiddler and p to paste

Heck, even :sort to sort all lines in the tiddlers work

Good stuff!

Best,
tony

On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:
>
> Is there any way to search and replace in
> Tiddlers
>
>- text
>- field value
>
> for example search foo and replace with bar?
>
>
> --Mohammad
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0839dc3e-162b-462e-a48d-64fee20a9900%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread Mohammad
Tony,
 I am looking to find a way to replace a word/phrase using Tiddler 
Commander!
But seems not straightforward at all!!

So, I ignore it and will wait to see when TW  itself supports such feature.

--Mohammad

On Thursday, February 14, 2019 at 7:26:16 AM UTC+3:30, TonyM wrote:
>
> Mohammad,
>
> There is an additional plugin for search and replace in code mirror. In 
> the regular editor and text areas the browser search and replace can be 
> used, and browser plugins found that help.
>
> For large and complex tiddlers i prefer to use a browser plugin to open 
> the text area in an external editor like notepad++ which has superior 
> search and replace like including linefeed and tabs.
>
> I believe the visual editor also has a search and replace.
>
> Regards
> Tony
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b9c1de16-ee5c-457e-9fac-0f58519bc3a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread Mohammad
Thanks Birthe.

Thanks for your kind words! I gonna to be among the the Tiddlywiki Noble 
Prize winners :-)  (the best joke of 2019!!)

--Mohammad


On Thursday, February 14, 2019 at 8:46:36 AM UTC+3:30, Birthe C wrote:
>
> Hi Mohammad,
>
> https://danielorodriguez.com/TW5-searchNreplace/  or Stephens Kimmels 
> http://skplugins.tiddlyspot.com/#FindReplace both working in the tiddler 
> editor.
>
> You are always busy, having good ideas. I enjoy it very much.
>
> Birthe
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7f794506-25ca-46c5-98c8-b0e6d56d82e3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread Birthe C
Hi Mohammad,

https://danielorodriguez.com/TW5-searchNreplace/  or Stephens Kimmels 
http://skplugins.tiddlyspot.com/#FindReplace both working in the tiddler 
editor.

You are always busy, having good ideas. I enjoy it very much.

Birthe

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3bc46cde-d8d4-413e-bb3f-abeed61ea739%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread TonyM
Mohammad,

There is an additional plugin for search and replace in code mirror. In the 
regular editor and text areas the browser search and replace can be used, and 
browser plugins found that help.

For large and complex tiddlers i prefer to use a browser plugin to open the 
text area in an external editor like notepad++ which has superior search and 
replace like including linefeed and tabs.

I believe the visual editor also has a search and replace.

Regards
Tony

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3c1e5f03-911d-4214-a2ee-4ac4b8f81028%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread Mohammad
Is these any existing macro to do that?

On Thursday, February 14, 2019 at 5:05:59 AM UTC+3:30, Mark S. wrote:
>
> AFAIK, unless there's some brand-new operators, you can't actually replace 
> text *inside* of tiddler text or fields. For that you'll need some 3rd 
> party macro or widget. 
>
> -- Mark
>
> On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:
>>
>> Is there any way to search and replace in
>> Tiddlers
>>
>>- text
>>- field value
>>
>> for example search foo and replace with bar?
>>
>>
>> --Mohammad
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3e078599-7787-48f4-b6b8-53c80d000b04%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread Mohammad
Just in tiddler.
M.

On Thursday, February 14, 2019 at 2:05:02 AM UTC+3:30, @TiddlyTweeter wrote:
>
> Do you mean across the whole of a TiddlyWiki?
>
> Or just within a Tiddler?
>
> J.
>
> On Wednesday, 13 February 2019 23:16:55 UTC+1, Mohammad wrote:
>>
>> Is there any way to search and replace in
>> Tiddlers
>>
>>- text
>>- field value
>>
>> for example search foo and replace with bar?
>>
>>
>> --Mohammad
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e27026a4-2e08-47b9-854d-17649ff062a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread TonyM
Mark

I belive what you say to be generaly true yet recall an auto tag or auto l8nk 
plugin that scans text to find and change things.

H

Regards
Tony

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0a4a977c-ab79-4946-a6f3-955d73c1d887%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread 'Mark S.' via TiddlyWiki
AFAIK, unless there's some brand-new operators, you can't actually replace 
text *inside* of tiddler text or fields. For that you'll need some 3rd 
party macro or widget. 

-- Mark

On Wednesday, February 13, 2019 at 2:16:55 PM UTC-8, Mohammad wrote:
>
> Is there any way to search and replace in
> Tiddlers
>
>- text
>- field value
>
> for example search foo and replace with bar?
>
>
> --Mohammad
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e802b56a-cfde-485f-b247-cad0094f153a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread TonyM
Using filters you can test for particular values in fields SEARCH and use a 
button and action widget to setfield values REPLACE either for one tiddler or a 
batch of tiddlers.

If your field contains multiple values you may need to use the list operators 
to change one only in a list.

Global search and replace can be done opening the whole wiki in a text editor 
but you must be careful not to change the wrong values. Backup if doing this.

Regards
Tony

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b37f6848-d34e-48b1-a93c-499572492f8c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: search and replace in tiddlers

2019-02-13 Thread @TiddlyTweeter
Do you mean across the whole of a TiddlyWiki?

Or just within a Tiddler?

J.

On Wednesday, 13 February 2019 23:16:55 UTC+1, Mohammad wrote:
>
> Is there any way to search and replace in
> Tiddlers
>
>- text
>- field value
>
> for example search foo and replace with bar?
>
>
> --Mohammad
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a88d0c01-95b6-41de-9da6-77d7afe2fa95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.