Tagged Questions
0
votes
4answers
45 views
Linux cut string
In Linux (Cento OS) I have a file that contains a set of additional information that I want to removed. I want to generate a new file with all characters until to the first |.
The file has the ...
-2
votes
3answers
51 views
Cut off last half of String
I need to cut off half of a user-entered string. I've tried this and it didn't work:
Scanner sc = new Scanner(System.in);
String nameOne = sc.nextLine();
chars[] oneChars = new ...
-2
votes
1answer
40 views
Need to cut a string(Table Name) from Query in c#
My String/Query looks like this
insert into Employee Values(1,2,'xxx');
update Employee2 set col1='xxx' where col2='yyy';
select * from Employee3;
I need to take/have TableName alone. Table name ...
0
votes
1answer
163 views
Select part of string from text file and write it to another with powershell
i´m currently working on a script that reads out the standard printer on a workstation and write it to a textfile. Now i need to convert or cut the output string and write it to another file in order ...
2
votes
5answers
112 views
perl - cutting many strings with given array of numbers
dear my fellow perl masters in the world~!
I need your help.
I have a string file A and a number file B like this:
File A:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
...
0
votes
2answers
66 views
Cut characters for a string in C
Here's some code.
#include <stdio.h>
int main()
{
char npass[] = "$1$bUZXMjKz$08Ps4NPTfj6ZNkoqrsP/D.";
char salt [12];
int i;
for (i = 0; i < 12; i++)
{
...
0
votes
3answers
42 views
Wrong character removing using std::remove [duplicate]
Possible Duplicate:
Remove spaces from std::string in C++
std::remove does not work
I use std::remove to remove some charaters from the string.
For example:
std::string hash_value = ...
0
votes
4answers
180 views
Cutting String java
I need to cut certain strings for an algorithm I am making. I am using substring() but it gets too complicated with it and actually doesn't work correctly. I found this topic how to cut string with ...
0
votes
1answer
49 views
Cut string into parts of 2 charactered string and then to hex format (char * to unsigned char) in C
I need some help in cutting a string into a pair of characters and then converting it to HEX format.
eg. char *ADDRESS = "0011AABB";
I want the above address to be split "00", "11", "AA" and "BB" ...
0
votes
3answers
160 views
cut the part of the string in java [closed]
String DeviceName = "Black USB (H:)";
How to separate the "Black USB" and remove (H:) from the string in JAVA, which I need to pass on further in method in other class.
0
votes
3answers
118 views
cut the first word (from a string) that matches the pattern
I have a sentence:
"This 'is' just an example"
I need to cut the word between first ' ' characters.
Up until now, I was using following Regex method:
string name_only = Regex.Match("This 'is' ...
4
votes
5answers
184 views
PHP - How to append “…” to a string of varying length at a certain point? e.g. After 200 chars
i have a mysql database and a table full of information, specifically a column of product descriptions. This column is used in my scripts twice. Its max length is 1000 characters.
One of the uses for ...
0
votes
0answers
113 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
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
...
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
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 ...
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 ...
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, ...
1
vote
4answers
565 views
0
votes
3answers
390 views
Get all words from string until certain word
$title = 'the.test.hd.part12';
Need all words up until it finds the word "part"
Should return - the.test.hd.
Any help appreciated. Thank you.
0
votes
2answers
461 views
Regular expression - Cut string from the end by space but with this space
The input string for regex is a casual number of chars from another string. So it can be an incomplete part of a word at the end of the input string. Regex must cut the incomplete part of the word and ...
1
vote
5answers
1k views
Get subdomain from URL using Python
For example, the address is:
Address = http://lol1.domain.com:8888/some/page
I want to save the subdomain into a variable so i could do like so;
print SubAddr
>> lol1
0
votes
3answers
777 views
How to get everything to the left from last delimiter in a string?
To cut last field in string I use:
command: echo /dir1/dir2/dir3/file | awk -F "/" '{ print $NF; }'
output: file
How can I get everything to the left from the last delimiter in the ...
6
votes
2answers
8k views
xcode cut last characters from string
im workin on a xcode programm and need to cut the last 5 characters from a string....
i wont find it so i try to ask it her....
does anybody know how to cut the last 5 characters from a NSString?
...
3
votes
5answers
13k views
How to cut the last field from a shell string
How to cut the last field in this shell string
LINE="/string/to/cut.txt"
So that the string would look like this
LINE="/string/to/"
Thanks in advance!
2
votes
5answers
6k views
cutting from string in C#
My strings look like that: aaa/b/cc/dd/ee . I want to cut first part without a / . How can i do it? I have many strings and they don't have the same length. I tried to use Substring(), but what about ...
0
votes
1answer
175 views
0
votes
1answer
788 views
Read and delete text between two strings in perl
I need a way to read and delete text between two different strings found in some file, then delete the two strings. Like a "cut command." I would like to have the text stored in a variable.
I saw ...
