1
vote
2answers
71 views

Split string and remove spaces without .select

(Limitations: System; ONLY) I want to be able to split a string into an array and remove the spaces, I have this currently: string[] split = converText.Split(',').Select(p => p.Trim()).ToArray(); ...
0
votes
2answers
76 views

Extract all matches from given string

I have string: =?windows-1256?B?IObH4cPM5dLJIA==?= =?windows-1256?B?x+HYyO3JIC4uLg==?= =?windows-1256?B?LiDH4djj5s3Hyg==?= =?windows-1256?B?Rlc6IOTP5skgKA==?= I need to extract all matches ...
0
votes
3answers
875 views

Python: Split, strip, and join in one line

I'm curious if their is some python magic I may not know to accomplish a bit of frivolity given the line: csvData.append(','.join([line.split(":").strip() for x in L])) I'm attempting to split a ...
1
vote
3answers
114 views

Shorten plain div text

I am using a service called 'embedly' which is showing my feeds. I'm trying to shorten the text of this feed, so I tried: $('.description').html( function(){ return ...
2
votes
2answers
1k views

Javascript Split Space Delimited String and Trim Extra Commas and Spaces

I need to split a keyword string and turn it into a comma delimited string. However, I need to get rid of extra spaces and any commas that the user has already input. var keywordString = "ford ...
0
votes
3answers
155 views

How to trim text and use it as parameter for next step in watir using ruby

This may be very simple question but I am very new to ruby or any programming language. I want to trim some text and use it as parameter for next step. Can any one please write me code for doing this. ...
-1
votes
2answers
318 views

Split a string with JavaScript

the following code works for me, but seems to be quite long-winded. Can i shorten it? var str = "some title of an event here, weekday 17:00 – 18:00 o’clock, with name of a ...
1
vote
6answers
661 views

How can I extract the columns of data with Perl?

I have strings of this kind NAME1 NAME2 DEPTNAME POSITION JONH MILLER ROBERT JIM CS ASST GENERAL MANAGER I want the output to be name1 ...
3
votes
6answers
2k views

Map with Split & Trim in Perl

How do I use map with the split function to trim the constituents: $a, $b, $c and $d; of $line? my ($a, $b, $c, $d, $e) = split(/\t/, $line); # Perl trim function to remove whitespace from the start ...
20
votes
3answers
12k views

How can I split and trim a string into parts all on one line?

I want to split this line: string line = "First Name ; string ; firstName"; into an array of their trimmed versions: "First Name" "string" "firstName" How can I do this all on one line? The ...