Jump to content

Jquery search for brackets?


rockinaway

Recommended Posts

I have a bit of text as follows:

 

'this is my text. I want to (change this).'

 

Basically I want to search this var for brackets and then alter the information inside the brackets and finally output the new var.

 

I've been trying to use regex, but I'm not very good with the expressions :/

 

How would I do this?

Link to comment
https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/
Share on other sites

Yes, I think you would need to use regex and javascripts replace function.

 

Without testing I think it would go something along these lines:

 

var inputText = 'this is my text. I want to (change this).';
var outputText = inputText.replace(/\([^)]*?\)/g, "(new variable)");

 

Hope this helps,

Joe

Use the javascript match to search for brackets, and only execute the replace if they are found. Something along the lines of

 

var inputText = 'this is my text. I want to (change this).';
if(inputText.match(/\([^)]*?\)/g))
   {
        var outputText = inputText.replace(/\([^)]*?\)/g, "(new variable)");
   }
else
   {
       alert('No brackets found');
   }

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.