Tagged Questions
6
votes
4answers
167 views
In C#, what is the best way to parse out this value from a string?
I have to parse out the system name from a larger string. The system name has a prefix of "ABC" and then a number. Some examples are:
ABC500
ABC1100
ABC1300
the full string where i need to parse ...
0
votes
5answers
81 views
String Replace not work
I have a string (an example of its value is {"id":"123241077871_4423423423414"}) and I only require the part with the numbers and the underscore. However, my way of doing it with the String.Replace ...
-1
votes
3answers
60 views
How to parse a string with no delimiter?
I have a frame that I want to parse. It is a String, and the fields have no delimiters, and have different lengths. How can I get those fields (using Java)?
For example the frame: $XXYYYU#
How can I ...
1
vote
2answers
22 views
Parsing JSON to Array Map Produces “The local variable may not have been initialized”
I'm currently following this tutorial ( http://mobile.dzone.com/news/android-tutorial-how-parse ) how ever // add items from doddataitemObj to dataitem string - String PUBLICEVENTTYPE = ...
0
votes
2answers
77 views
python - fastest way to find unique “words” in a string
I have a string, s, with a length of 2*2*1092-1 = 4367 characters. Here are the first 15 characters:
0 0 0 1 0 1 0 0
I am interested in the characters as couples; i.e. for the first 15 characters:
...
0
votes
1answer
31 views
Parsing delimited string from a file
I am trying to parse specific information from text files. I would like to be able to take the following text:
&15:44:25.3911456_0089& SIPEngine 0x208c
N SIPUDPTransport::process_message() : ...
5
votes
4answers
87 views
How can i use string#split to split a string with the delimiters + - * / ( ) and space and retain them as an extra token?
I need to split strings containing basic mathematical expressions, such as:
"(a+b)*c"
or
" (a - c) / d"
The delimiters are + - * / ( ) and space and i need them as an independent ...
1
vote
2answers
54 views
splitting a string('_' as delimiter)
I have following string
String S1="S1_T1_VIEW";
I want it to be split and assign to string like this:
String permission = "VIEW";
String component = "S1_T1";
String parent = "S1";
I tried using ...
0
votes
5answers
109 views
How do I do string parsing in C++? [duplicate]
I have the following example:
string name_data = "John:Green;96";
I need to parse the string name, the string surname and int data. I've tried using sscanf, but it isn't working!
How should I do ...
1
vote
3answers
121 views
Parse a string in C and save it to an array of structs
I am quite familiar with Python coding but now I have to do stringparsing in C.
My input:
input = "command1 args1 args2 arg3;command2 args1 args2 args3;cmd3 arg1 arg2 arg3"
My Python solution:
...
4
votes
3answers
145 views
Parsing using Pattern in Java
I want to Parse the lines of a file Using parsingMethod
test.csv
Frank George,Henry,Mary / New York,123456
,Beta Charli,"Delta,Delta Echo
", 25/11/1964, 15/12/1964,"40,000,000.00",0.0975,2,"King, ...
-3
votes
3answers
78 views
Parsing comma-separated values containing quoted commas and newlines
I have string with some special characters.
The aim is to retrieve String[] of each line (, separated)
You have special character “ where you can have /n and ,
For example Main String
...
-1
votes
4answers
62 views
Split a String into Multiple Strings (When a certain character occurs) [closed]
I need to write a method that takes a String and separates the String into a String[] every time there is a ;. For example, if I give it test;test2;test 3, it should give me a String[] containing ...
-2
votes
1answer
34 views
How to parse delimited files to be compared
There is a text file formatted like the example below that I need to search for a students class name:
Michael | Straham | Eng101(4.0) | Mth303
Jacob | Black | SCI 210 (2.3) | Eng101
Ian | Summers | ...
1
vote
2answers
76 views
Parse date/time from string?
I'm trying to create a program to parse a meaningful date and time from a string. I want to be able to give the following kinds of input, and create a date/time object:
5 o'clock
5 p.m.
5 a.m.
5
530
...
1
vote
5answers
76 views
Extract Value from String
What is the best way to read RESULT from this string? Only string needs to be parsed, it's returned from web service
"RESULT: FAILED
RESULT_CODE: 944
RRN: 313434415392
APPROVAL_CODE: 244447
...
1
vote
0answers
21 views
String Parse , Lexer or Regex [duplicate]
$filter = 'id,name,questions.fields(id,text,options.limit(5).offset(3).fields(id,text),type).limit(10).offset(2),create_date';
I want to parse $filter like this. ($filter value is dynamic.)
$fields ...
0
votes
1answer
56 views
Trouble with recursive text splitting
trying to split text via text-defined boundary markers using recursion and create a list of lists and strings containing all of the organized parts of the original text file.
The split isn't ...
2
votes
2answers
27 views
jquery selector function failing on ajax reponse html data
In my jquery code, I am using an ajax get function to get the html code of a page. I want to then get a certain element from it, but when I try to do that, jquery gives this error:
SCRIPT5022: Syntax ...
1
vote
1answer
43 views
How to parse a sprintf string in PHP
Consider a typical structure created by sprintf as
$pattern = "%1$s-%2$s|%3$s";
$str = sprintf($pattern, $a, $b, $c);
now we have a string as test-fore|here
How we can parse the latter string by ...
2
votes
1answer
52 views
Parsing Apache logs in Perl
UPDATED 5-10-2013
Okay, so now I can filter out the IP addresses with no problem. Now come the next three things I'd like to do which I thought could easily be done with sort($keys), but I was wrong ...
6
votes
5answers
78 views
PHP - String Logic Parsing - “X AND Y OR Z”
I would like to take a and/or logic query query string of unknown length:
$logic = 'elephants and tigers or dolphins and apes or monkeys and humans and gorillas and and 133322 or 2';
And parse it ...
4
votes
5answers
76 views
What's the best method to parse strings for multiple word combinations?
I'm writing a program that attempts to derive meaning from natural language. The program will accept a String, and see if it contains certain combinations of words. See the following code snippet for ...
1
vote
3answers
82 views
Check if a string contains an email address? [duplicate]
How can I check to verify that a given string contains an email address.
The email address would be included with a lot of other text, as well.
Also, not looking to necessarily strictly validate the ...
0
votes
2answers
48 views
parsing a string using pointer pointing to a string without using strdup and strtok functions
I am writing a code in which i want to parse a incoming string(basically this is for embeddded project, but i want to test it first in C).The string can be a GPS output , basically a NMEA string.Even ...
0
votes
1answer
45 views
Safe way to convert a string which contains a python list to a list
Using an HTTP query I get data (as string) like this
[[1356912000, 13.391120000000, 13.509900000000, 13.391120000000, 13.509320000000, 41.088424560000, 555.033691727713, 13.508273867187],
...
1
vote
3answers
68 views
Java string parsing to HashMap
I have an input string of the following format:
Message:id1:[label1:label2....:labelN]:id2:[label1:label2....:labelM]:id3:[label1:label2....:labelK]...
It is basically ids associated with sets of ...
1
vote
1answer
50 views
VBScript to parse a line until the marker character is met
How to parse a line until the marker string/character is met.
Eg.
<a href="/stamp/stamp.jsp?tp=&number=100001">
..
<a href="/stamp/stamp.jsp?tp=&number=200001">
..
...
0
votes
0answers
72 views
Issues with JSON Parsing Objects and Arrays
IM having issue with the following code im using to Parse JSON Objects and Arrays. Please see the following JSON data im trying to getText from and insert into TextViews. For some reason currently im ...
1
vote
1answer
47 views
Making folder names from URL php
I have a system which will store certain files for various websites.
Some websites are shown as basic:
www . myrandomsite . com
www . yetanothersite . com /sublevel/
http: somefunky.sub . org
...
1
vote
2answers
50 views
How do I return a string from a javacc method?
I have this method in javacc to parse a url (e.g. /books/id/1). How do I make this method return the whole url string?
void path() :
{}
{
(< SLASH > ( < IDENTIFIER >))+
}
I have tried ...
0
votes
0answers
67 views
Parse XML for image data and return the image string
I am having a slight logic issue. I am parsing an XML file returned from an api call to display in list box. The xml data returns an object key not the actual image. I then have to use the opject key ...
0
votes
1answer
56 views
Parsing a string for a particular value
I am trying to parse the string that contains "Enter q to quit or the whole data as a comma delimited string using the following format Name,D,C,D:minQ or R:roast" to check if the user typed "D:" or ...
1
vote
6answers
91 views
Parse a string into two double
I have a string that is in the format #########s###.##
where #### is just a few numbers, and the second piece is usually a decimal, but not always.
I need to break the two number pieces apart, and ...
0
votes
3answers
105 views
Java parsing long from string
I'm currently trying to parse some long values stored as Strings in java, the problem I have is this:
String test = "fffff8000261e000"
long number = Long.parseLong(test, 16);
This throws a ...
0
votes
1answer
47 views
Parsing a string in python without knowing is in the string
I'm trying to parse a random string between a set of quotation marks.
The data is always of the form:
klheafoiehaiofa"randomtextnamehere.ext"fiojeaiof;jidoa;jfioda
I know what .ext is, and that ...
0
votes
1answer
54 views
Get part of string that is not html in Java
In my Java application I have String that have to be edited. The problem is that these Strings can contain HTML tags/elements, which should not be edited (no id to retrieve element).
Scenario (add ...
0
votes
5answers
60 views
Parsing a non-uniform string into integers
I am writing a parser for .obj files, and there is a part of the file that is in the format
f [int]/[int] [int]/[int] [int]/[int]
and the integers are of unknown length. In each [int]/[int] ...
2
votes
3answers
89 views
Parsing a string in C
I want to parse a string and do some checks on the last character of the string. For example:
char *name = "angela";
int i;
for(i = 0; i <= strlen(name); i++) {
if(name[i] == 'a' && i ...
0
votes
1answer
87 views
parsing parentheses from a string
So I have a logical statement such as "((A o B) a B) o (B a C)" and I want to parse each set of statements within the parenthesis to each part in a list... here is what i have so far but since im new ...
0
votes
1answer
73 views
simple parse of an int into a string [duplicate]
In my class my teacher showed me something similar to this. Visual studio is saying string doesnt have definition for parse. I remember in class the teacher said it was ...
0
votes
4answers
50 views
i want to take out words from a string sentence and get this error in c++
#include<iostream>
#include<string>
using namespace std;
void extractFirstWord(string& sentence, string& word);
void processBlanks(string& sentence);
int main() {
string ...
0
votes
1answer
21 views
How do I consume multiple outputs of `textscan` function in a single line?
Suppose I have the following string:
s = 'Foo 1.000 3.000 3.554'
I would like to read it with the textscan function as follows.
[name x y z] = textscan(s, '%s %f %f %f')
However, when I do ...
0
votes
3answers
84 views
How do I parse this string easily?
So I want to extract data from something on the form:
"San Diego"--"San Antonio" [1319]
I want to extract both of the cities names and the number at the end in brackets[]. If the city is one word ...
1
vote
2answers
225 views
Using REGEX to parse a search string with boolean operators
I found this answer -
http://stackoverflow.com/a/7943464/1901367 - which gave me this really useful code allowing me to parse search strings that contained quotes and white space.
...
6
votes
5answers
45k views
How to convert/parse from String to char in java?
So the question is very basic: How to parse a String value to char type?
I know how to do it to int and double (for example Integer.parseInt("123")), but then chars... there isn't any class like that ...
3
votes
3answers
4k views
Evaluate C# string with math operators
Is there an easy way to evaluate strings like
"(4+8)*2"
So that you'd get the int value of 24?
Or is there a lot of work needed to get this done...?
38
votes
14answers
46k views
How to identify if a string is a number?
if I have these strings:
"abc" = false
"123" = true
"ab2" = false
Is there any command like IsNumeric or something else that can identify if a string is a valid number?
54
votes
4answers
52k views
In Java, how do I parse XML as a String instead of a file?
I have the following code:
DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(xmlFile);
How can I get it to parse XML contained within a String instead of a file?
246
votes
12answers
345k views
Parse String to Float or Int
In Python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31?
I just want to know how to parse a float string to a float, and ...





