A Unix shell command that breaks input into fields, which can be selected for output, based on a delimiter.
0
votes
0answers
117 views
Ubuntu cut and store characters from a string
I have a string of file names and I would like to cut out the the first 6 characters from the string and store it to a variable. Here is my attempt and I don't understand why this doesn't work.
...
2
votes
1answer
338 views
Text is cut off in textview at the left side of the screen in android device
I'm facing a problem with arabic text in android device (LG optimus P970), the text is cut off at the left side of the device , i tried to use padding , decrease the width of the textview ...
Nothing ...
0
votes
0answers
105 views
My text (numbers) on buttons in my android app is cut 1/3 from the bottom
While i test my app with the emulator, the text seems fine, but as i install the app on my LG optimus black, (with higher resolution), the text on the buttons is cut 1/3 from the bottom, so i see ...
2
votes
1answer
95 views
How would I print a whole column based upon string. (Random Column Number)
On day one I may receive large CSV output such as:
this,is,a,test
bob,is,your,uncle
sound,one,"Zen proverb",clapping
On day two I may receive output such as:
test,this,is,a
...
0
votes
1answer
386 views
How to ensure that the following logic for jstree custom context menu works correctly?
I would like this to work like explorer.exe in Windows, that is only if we have cut or copied an element that the paste item will appear.. this works sometimes but perhaps there is something that I'm ...
1
vote
1answer
4k views
How to cut multiple columns from several files and print the ouput to different files
I am quite new to the Linux environment. I have several files and I only want to take specific columns from it. At the moment, I am using the following code:
$cut -f 1,2,5 AD0062-C.vcf > ...
0
votes
1answer
1k views
How to use a string as a delimiter shell script
I am reading a line and am using regex to match it in my script. (/bin/bash)
echo $line | grep -E '[Ss][Uu][Bb][Jj][Ee][Cc][Tt]: [Hh][Ee][Ll][Pp]' > /dev/null 2>&1
if [[ $? = "0" ...
1
vote
3answers
208 views
How to printf() only the first part of a string
I have written a small program in C to get IP from remote user who log into SSH session
Code :
int main (){
char * getIP ;
getIP = getenv ("SSH_CLIENT");
printf ("%s", getIP);
...
-2
votes
1answer
2k views
Print the last field using 'cut'
Let's say I've the following data:
ae722d1d94dcd3b161af166936:!]z@.:123
09338b2b29919e6c0daefbcce0361335:21f2e48d86f28ab7cd5c9c95:123
$H$92Gh.gRJwECLPzkjACPihoLg/:123
...
0
votes
2answers
63 views
Any way to “cut” background with the element?
I need to cut an background of a div with a heading in the following way:
While it can be easily achieved on solid background (by setting element to inline-block and using same bg color as a main ...
2
votes
2answers
166 views
copy SVN modified files including directory to a another directory
I have a list of files in my current working copy that have been modified locally. There are about 50 files that have been changed.
I am using the following command to copy files that have been ...
0
votes
0answers
47 views
extract field based on the last character
I want extract part of the field based on the last character K. Every field ends with K and the one that I want to extract has only 4 characters.
I have something like this
...
0
votes
2answers
256 views
How to capture cut and paste action in file watcher using C#
I have written file watcher functionality to focus on particular directory activities. I can read all events like creating ,deleting ,renaming and changing the file/folder.
But i don't know how to ...
1
vote
2answers
290 views
Unix redirecting csv file
Just starting out in Unix and need t workout this:-
I have a csv file with 3 columns.
Using Terminal in Unix I need to cut the columns and get each column to create a text file of the info in the ...
2
votes
1answer
229 views
splitting a field into two using linux cut
I have several fields in my log file and I have been able to transform them to CSV with the following script.
#!/bin/bash
INPUT=/home/MSC11/khanm/wwwp11dorganiser.co.uk_log
...
0
votes
1answer
228 views
How to find a maximum flow in a planar graph?
I know an algo to find the minimum cut in a planar graph.
Works as O(NlogN)
You create a dual graph where each vertice corresponds to original's graph facet and edge corresponds to a minimum edge ...
0
votes
1answer
158 views
Facebook comment cut off locally?
My facebook comment box is getting off vertically when I run my site locally with rails, but when I upload it to heroku and view it there it seems to autosize fine. Any idea why this might be? Is it ...
0
votes
0answers
87 views
How to select a portion of text from a label in xcode
The idea is to cut down text such as: SupepApple to just Apple
I need the answer soon so sooner the better thanks :D
3
votes
6answers
565 views
Extract specific strings from line in file and output to another file with modifications
New to linux and trying to escape doing this the hard way. I have a file ("output.txt") that contains the results of a 'find' command. Example first three lines from "output.txt":
...
2
votes
1answer
112 views
cut value in creating table
I have following type of data
mydata <- data.frame (yvar = rnorm(200, 15, 5), xv1 = rep(1:5, each = 40),
xv2 = rep(1:10, 20))
table(mydata$xv1, mydata$xv2)
1 2 3 4 5 6 7 8 9 10
1 4 4 ...
0
votes
1answer
420 views
How to make gwt's RichTextArea detect content pasting and cutting events?
Below code can make RichTextArea auto-grow-or-shrink vertically based on KeyUp event,and question is how to do same thing when user paste or cut content in or out(Google plus has implemented ...
1
vote
2answers
374 views
UIPasteBoard string never get a right value after cut a text
i have cut a text in a textview using UIMenuController and i want to paste it in another place. But the UIPasteBoard string never get a right value. FYI, it just happen in cut process, but it's no ...
0
votes
2answers
792 views
Using the cut command in UNIX to get the last period
Lets say I have lots of ip numbers (2 ip numbers per line separated by a space) to look through (here are two lines):
67.21.89.48.1623 139.91.131.115.110
211.47.82.64 139.91.134.123.445
One of them ...
0
votes
1answer
156 views
Avoid div/tables cut when printing
I am using the editable invoice template to make the invoice. It looks great on the browser but when a certain number of item is added in the table, the bottom part(as attached in image) becomes cut ...
1
vote
2answers
462 views
Cut a center of a image
Suppose I have a 400x300px image, and I'd like to cut it as 200x200px centering it, on server side (C#, .NET 4.0).
How can I do it? Use a sort of canvas and move it? Any tutorial/code ...
1
vote
4answers
4k views
Use “cut” in shell script without space as delimiter
I'm trying to write a script that reads the file content below and extract the value in the 6th column of each line, then print each line without the 6th column. The comma is used as the delimiter.
...
0
votes
1answer
106 views
In R, How to create another variable whose values are based on FAVECTOR
The variable EVENT is the time in minute when the even occurs.
For example, EVENT[1] = 15, EVENT[100]= 3400.
Now I want to create an new variable, TIME.
If EVEN[n] is in the interval (34*(i-1)+1, ...
1
vote
4answers
119 views
PHP how to cut text at comma in string
I am looking for a way to cut my strings at comma location.
$string1 = 'Something, Other, Display, This';
$string2 = 'Something, Display, This';
$string3 = 'Something, Something, Something, Display, ...
0
votes
1answer
573 views
cut/paste behaves like copy/paste in Excel
I, in fact two end users have seen a strange issue in Excel.
When they CTRL+X to cut some cells and CTRL+V to paste, it does copy/paste, not cut/paste
They said it is related to the new version addin ...
0
votes
1answer
400 views
How to 'cut' on null?
Unix 'file' command has a -0 option to output a null character after a filename. This is supposedly good for using with 'cut'.
From 'man cut':
-0, --print0
Output a null character ‘\0’ ...
-3
votes
1answer
1k views
select, cut and replace a region of image with another [closed]
I have a picture box and import image to this picture box. I want select a region of this picture box (image) like "free-form selection in MS Paint" then cut selected region and replace (fill) this ...
1
vote
2answers
5k views
bash script use cut command at variable and store result at another variable
##config file with ip adresses like 10.10.10.1:80
#!/bin/bash
file=config.txt
for line in `cat $file`
do
##this line is not correct, should strip :port and store to ip var
ip=$line|cut -d\: -f1
...
1
vote
2answers
2k views
cropping an area from BitmapData with C#
I have a bitmap sourceImage.bmp
locking it's bits:
BitmapData dataOriginal = sourceImage.LockBits(new Rectangle(0, 0, sourceImage.Width, sourceImage.Height), ImageLockMode.ReadOnly, ...
0
votes
1answer
190 views
Decimal numbers cutting
I put a number in EditText line and it counts a double value in another.
But the double value of 4.8 should be 9.6 and not 9.6000000381469727.
I know it is normal for float but I would like to cut the ...
2
votes
3answers
3k views
cut command newline
I have a file like this:
one
two
three
four
I would like use a for loop in a bash script in order to scan the file line for line. Previously I used cut but I was not able to give the cut command ...
0
votes
2answers
183 views
mysql - cut first string in row depending on condition
I have new problem with query:
I want to update column 'column' depending on id with some new data:
UPDATE table SET column = CASE
WHEN id = 2 THEN CONCAT(`column`, ',7')
WHEN id = 3 THEN ...
0
votes
6answers
240 views
Cut big sentence by PHP
$string = '"Above all," said British Prime Minister David Cameron, "what I think matters is building the evidence and the picture so we hold this criminal regime to account, and to make sure it is ...
2
votes
3answers
310 views
Get the value of a textbox during cut event
I have trapped the cut event (jquery) on a textbox. What I want is to get the text on the textbox during the cut event is triggered.
I've tried accessing the data the user cut via ...
0
votes
2answers
188 views
How to cut text in (insert) SELECT mode in Vim without unwanted behavior?
I'm currently using this key mapping in my .vimrc file to simulate the Windows Cut keyboard shortcut. Cut, meaning copy and delete the selected text.
vnoremap <C-X> "+x
This key mapping is ...
3
votes
4answers
1k views
Unix join on more than two files
I have three files, each with an ID and a value.
sdt5z@fir-s:~/test$ ls
a.txt b.txt c.txt
sdt5z@fir-s:~/test$ cat a.txt
id1 1
id2 2
id3 3
sdt5z@fir-s:~/test$ cat b.txt
id1 4
id2 5
id3 6
...
3
votes
3answers
499 views
Print only fields of matched header starting after matched records
I'm trying to extract specific fields from my file. Basically, output fields only containing a matched expression, with output starting after the matched records.
This is an example of my input. ...
5
votes
3answers
3k views
Shell Script to download youtube files from playlist
I'm trying to write a bash script that will download all of the youtube videos from a playlist and save them to a specific file name based on the title of the youtube video itself. So far I have two ...
-2
votes
2answers
381 views
Custom cut copy and paste UI?
I want to change the buttons on the cut, copy and paste pop over UI to be my own, but i'm not sure how to go about doing this, and whether or not i'd need to design my own UI to do it.
1
vote
4answers
1k views
How to cut off string after the first line in the paragraph
I have the string as show below:
XXX:Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur cursus lacus sed
justo faucibus id pellentesque nunc porttitor. Sed venenatis tempor dui, ...
0
votes
1answer
95 views
Determing intersecting quads?
Is there a possibility to detect whether an object intersects another object in Opengl ?
For example: I have 2 quads(later nurbs),I am moving these quads so that at some point they intersect. Now I ...
1
vote
4answers
316 views
Need to extract middle hex portion from the tcpdump output
Here is a tcpdump hex output of a captured packet.
Command used was ..
$ tcpdump -X -s0 protochain <portno>
0x0000: 6000 0000 0080 3220 0000 0000 0000 0000 ................
0x0040: 0000 ...
0
votes
2answers
209 views
How to apply a function across columns of data.frame?
Let's say I have a data frame with numerical values like this
AA01.AVG_Beta AA02.AVG_Beta AA03.AVG_Beta AA04.AVG_Beta AA05.AVG_Beta
1 0.15851770 0.44264830 0.46662180 0.79579230 ...
3
votes
4answers
206 views
Get the 4th Wednesday of each November in R
I have a time-indexed matrix (xts object) and I want only the fourth Wednesday of every November.
require(quantmod)
getSymbols("^GSPC", from="1900-01-01") #returns GSPC
GSPC$WED <- ...
9
votes
1answer
848 views
Cut function in R - exclusive or am I double counting?
Based off of a previous question I asked, which @Andrie answered, I have a question about the usage of the cut function and labels.
I'd like get summary statistics based on the range of number of ...
0
votes
1answer
136 views
R replace values with bins
I have a df with integer values. For purposes of classification, I'd like to replace this df with a simpler one that has pre-determined intervals instead of integers. How do I do this efficiently? An ...

