My objective
This question is about Visual Studio Code search box.
I want to replace all the "spaces" by the character "_" inside the my substring with spaces
of mystring
for example:
-> From
{
"Show_details": mystring("my substring with spaces"),
"Type_of_event": mystring("my substring with spaces2"),
}
-> To
{
"Show_details": mystring("my_substring_with_spaces"),
"Type_of_event": mystring("my_substring_with_spaces2"),
}
What I tried
I only managed to get the `my_substring_with_spaces`. But I do not understand how to proceed further.Search: mystring\("([a-z]*?( )[a-z]*?)"\)