rockinaway Posted December 12, 2011 Share Posted December 12, 2011 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 More sharing options...
rockinaway Posted December 12, 2011 Author Share Posted December 12, 2011 Any help? Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297194 Share on other sites More sharing options...
joe92 Posted December 12, 2011 Share Posted December 12, 2011 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 Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297278 Share on other sites More sharing options...
rockinaway Posted December 12, 2011 Author Share Posted December 12, 2011 Okay, thanks. How would I search the string first though? And then if the brackets are there, replace the content? Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297305 Share on other sites More sharing options...
joe92 Posted December 12, 2011 Share Posted December 12, 2011 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'); } Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297311 Share on other sites More sharing options...
rockinaway Posted December 12, 2011 Author Share Posted December 12, 2011 Absolutely perfect! Thank you! Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297317 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.