javascript - Parsing Text with jQuery - Stack Overflow

admin2025-04-03  0

I'm attempting to parse a text string with jQuery and to make a variable out of it. The string is below:

Publications Deadlines:   armadllo

I'm trying to just get everything past "Publications Deadlines: ", so it includes whatever the name is, regardless of how long or how many words it is.

I'm getting the text via a the jQuery .text() function like so:

$('.label_im_getting').text()

I feel like this may be a simple solution that I just can't put together. Traditional JS is fine as well if it's more efficient than JQ!

I'm attempting to parse a text string with jQuery and to make a variable out of it. The string is below:

Publications Deadlines:   armadllo

I'm trying to just get everything past "Publications Deadlines: ", so it includes whatever the name is, regardless of how long or how many words it is.

I'm getting the text via a the jQuery .text() function like so:

$('.label_im_getting').text()

I feel like this may be a simple solution that I just can't put together. Traditional JS is fine as well if it's more efficient than JQ!

Share Improve this question asked Oct 25, 2012 at 12:08 streetlightstreetlight 5,96813 gold badges66 silver badges102 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

Try this,

Live Demo

First part

str = $.trim($('.label_im_getting').text().split(':')[0]);

Second part

str = $.trim($('.label_im_getting').text().split(':')[1]);
var string = input.split(':') // splits in two halfs based on the position of ':'
string = input[1] // take the second half
string = string.replace(/ /g, ''); // removes all the spaces.
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743631906a213938.html

最新回复(0)