Find and replace?

Find and replace? - Is this feature available in some plug-in? - Messages

#1 Posted: 10/12/2021 9:56:42 AM
fedeghi

fedeghi

25 likes in 112 posts.

Group: User

Hi, is anybody aware of a method to find every occurrence of a "variable name" in a document, and replace it with another "new variable name" in every formula/occurence?
We have the built-in "find" (CTRL+F), but as far as I know it cannot replace also.

Does any plugin offer this feature?

Thanks
Bye
#2 Posted: 10/12/2021 10:18:54 AM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

Hi, is anybody aware of a method to find every occurrence of a "variable name" in a document, and replace it with another "new variable name" in every formula/occurence?


No, not as per you demand.

Utilities Matrix Find_Replace.sm (23 KiB) downloaded 41 time(s).
#3 Posted: 10/12/2021 2:25:51 PM
overlord

overlord

552 likes in 1332 posts.

Group: Moderator

There is F8 key for replacing variable when you are inside of a function, line, etc.
But there is not a global search and replace as far as I know.

Regards
#4 Posted: 10/12/2021 2:56:27 PM
sergio

sergio

115 likes in 329 posts.

Group: User

As a "sm" file is essentially an XML file, you can open it with an intelligent text editor (notepad ++) and do all the replacements with a special command

sergio
1 users liked this post
fedeghi 10/12/2021 3:54:00 PM
#5 Posted: 10/12/2021 3:56:31 PM
fedeghi

fedeghi

25 likes in 112 posts.

Group: User

Wrote

There is F8 key for replacing variable when you are inside of a function, line, etc.
But there is not a global search and replace as far as I know.


Thanks Overlord, I forgot to mention that I was referring to global "environment" instead of local variables inside a function

Wrote

As a "sm" file is essentially an XML file, you can open it with an intelligent text editor (notepad ++) and do all the replacements with a special command


Thanks Sergio, I will give it a try, didn't think at this method
#6 Posted: 10/12/2021 4:11:30 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

F8.PNG
#7 Posted: 10/12/2021 4:14:15 PM
Davide Carpi

Davide Carpi

1416 likes in 2873 posts.

Group: Moderator

Text Region Utilities?

File not found. File not found.
If you like my plugins please consider to support the program buying a license; for personal contributions to me: paypal.me/dcprojects
2 users liked this post
fedeghi 10/12/2021 4:45:00 PM, francesco rapuano 1/12/2025 5:40:00 PM
#8 Posted: 10/12/2021 4:44:38 PM
fedeghi

fedeghi

25 likes in 112 posts.

Group: User

Wrote

Text Region Utilities?


Super! As usual...
#9 Posted: 10/12/2021 5:39:35 PM
overlord

overlord

552 likes in 1332 posts.

Group: Moderator

Wrote

Text Region Utilities?


I wasn't using this on linux so totally forgot it.
While I was not using Search and Replace has been added.
It must be very long time since I had used it.

When I tried search&replace on linux there is that bug again.
Little blank squares are added front and end of variable.
Same cosmetic bug of Numeric UpDown Region.
But this time it effects variable names, not just cosmetic.

Regards
#10 Posted: 10/13/2021 4:21:57 AM
fedeghi

fedeghi

25 likes in 112 posts.

Group: User

Davide, is there a way / syntax that allows "Text Region Utilities" plugin to substitute some text with a new text containing greek letters?
Example:

Immagine 2021-10-13 092001.png

Thanks, bye
#11 Posted: 10/13/2021 7:41:58 AM
Davide Carpi

Davide Carpi

1416 likes in 2873 posts.

Group: Moderator

Wrote

When I tried search&replace on linux there is that bug again.
Little blank squares are added front and end of variable.
Same cosmetic bug of Numeric UpDown Region.
But this time it effects variable names, not just cosmetic.


That's odd, nothing more than what you set as replacements should be added; I'll investigate it.

Wrote

Davide, is there a way / syntax that allows "Text Region Utilities" plugin to substitute some text with a new text containing greek letters?



You can use regular expressions, like this:

2021-10-13 12_35_21-.png

The syntax means:

SEARCH anything that starts (^) with (S) and a subscript (\.) and capture anything after it ((.*)) [parethesis are the "capture" group, the period means "any character" and the asterisk "zero or more times"; BTW the subscript symbol is escaped with \ because otherwise it means "any character" )

REPLACE with sigma (σ) a subscript (.) and the first of the captured strings ($1)

This might be simplified or much more complicated depending on the cases (what is available on the worksheet and the patterns)


More on regular expressions: C# Regular Expressions

A nice tool to test patterns, with live preview: regex101.com
If you like my plugins please consider to support the program buying a license; for personal contributions to me: paypal.me/dcprojects
#12 Posted: 10/13/2021 9:09:56 AM
fedeghi

fedeghi

25 likes in 112 posts.

Group: User

OK Davide, that's more or less the goal I had in mind, I'll need some more study about the proposed notation but you put me on the right path, thank you.
  • New Posts New Posts
  • No New Posts No New Posts