Tagged Questions
The action of retrieving data from a string
29
votes
7answers
7k views
Safe integer parsing in Ruby
I have a string, say '123', and I want to convert it to 123.
I know you can simply do some_string.to_i, but that converts 'lolipops' to 0, which is not the effect I have in mind. I want it to blow up ...
12
votes
2answers
4k views
Code to parse user agent string?
As strange as I find this, I have not been able to find a good PHP function anywhere which will do an intelligent parse of a user agent string? Googled it for about 20 minutes now.
I have the string ...
9
votes
9answers
276 views
c#. Parse and find some word in string
I have some string
bla bla bla bla <I NEED THIS TEXT>
What is the best and fastest way to get text inside <>?
7
votes
3answers
170 views
Good practices for parsing user inputs with special characters?
Greetings, I am the program writer for the rebellion against the evil galactic empire. Right now, we are preparing for a daring assault on the Death Star.
I have created a vast database of ...
7
votes
5answers
914 views
How to read formatted data in C++?
I have a formatted data like the following:
Words 5
AnotherWord 4
SomeWord 6
It's in a text file and I'm using ifstream to read it, but how do I separate the number and the word? ...
6
votes
3answers
859 views
What is a good python parser for a google-like search query?
For some search-based code (in Python), I need to write a query syntax parser that would parse a simple google like query syntax. For example:
all of these words "with this phrase"
OR that OR ...
5
votes
2answers
67 views
Can access the Parse methods for a given type based on an instance of Type in C#?
I'm using a DataTable and assigning columns different types. I have a scenario where I'm receiving String data and I want to parse it based on the column's assigned type, but I can't figure out how to ...
4
votes
3answers
118 views
Ocaml - Files and parsing
How to read contents from file in ocaml? Specifically how to parse them?
Example :
Suppose file contains (a,b,c);(b,c,d)| (a,b,c,d);(b,c,d,e)|
then after reading this, I want two lists containing ...
4
votes
3answers
112 views
Parsing quoted text in java
Is there an easy way to parse quoted text as a string to java? I have this lines like this to parse:
author="Tolkien, J.R.R." title="The Lord of the Rings"
publisher="George Allen & Unwin" ...
4
votes
3answers
214 views
Perl/regex to remove first 3 lines and last 3 lines of a string
I was looking to build a regex statement to always remove the first 3
lines of the string, and last 3 lines of the string (the middle part
could be any n number of lines content). Any clean regex way ...
4
votes
2answers
142 views
Reading two inputs from the user
I would like to get the user enters two different values using only ONE statement of Console.ReadLine().
More specifically, instead of using two different variables declarations with two different ...
4
votes
5answers
60 views
Extract Numeric and Special Charcters Seperately
I have column in a table with values stored as
Cost
499.00
£ 7.75
£ 7.75
250.00
£ 5.99
$ 6.05
Now, I need to store these values to another table like
Currency Cost
RS 499.00
£ ...
4
votes
3answers
669 views
C# - How to parse text file (space delimited numbers)?
Given a data file delimited by space,
10 10 10 10 222 331
2 3 3 4 45
4 2 2 4
How to read this file and load into an Array
Thank you
4
votes
1answer
128 views
Simple (mostly) variable parser
In one of my projects, I need to be able to provide a very simple variable find-and-replace parser (mostly for use in paths). Variables are used primarily during startup and occasionally to access ...
4
votes
6answers
234 views
4
votes
6answers
379 views
How can I get an e-mail address out of a string of key=value pairs?
How can I get some part of string that I need?
accountid=xxxxxx type=prem servertime=1256876305 addtime=1185548735 validuntil=1265012019 username=noob directstart=1 protectfiles=0 rsantihack=1 ...
3
votes
3answers
128 views
How can I tell if a value in Request.Form is a number? (C#)
Suppose I must call a function with the following signature:
doStuff(Int32?)
I want to pass to doStuff a value that is read from Request.Form. However, if the value passed in is blank, missing, ...
3
votes
3answers
126 views
Extract WHERE components from MySQL string dynamically
Say I have the following string (forget that it is a MySQL statement):
SELECT * FROM users WHERE name = 'fred bloggs' AND age=21 AND address='Mountain View, CA 94043' LIMIT 1
I need a way to ...
3
votes
3answers
381 views
Long.parseLong(“digitstring too significant”) produces java.lang.NumberFormatException
I get a java.lang.NumberFormatException:
For input string: "1.7023484830876092"
trimming the string to 1.70234, does solve the problem, but before slicing the string myself I'm wondering whether ...
3
votes
6answers
236 views
Problem trying to extract words from string in PHP
I'm trying to extract all words from a string into an array, but i am having some problems with spaces ( ).
This is what I do:
//Clean data to text only
$data = strip_tags($data);
$data = ...
3
votes
2answers
314 views
Java source code parser
I need to programmatically extract method definition/implementation from Java source file, could you recommend any handy library that I can use?
Thanks.
3
votes
2answers
262 views
C# fails to parse NaN as a double
On a Windows PC in Japan, this line of C# throws a format exception:
double d = double.Parse("NaN");
This line executes fine on my PC in the U.S.
Don't know where to begin troubleshooting this ...
3
votes
5answers
386 views
pointers and string parsing in c
I was wondering if somebody could explain me how pointers and string parsing works. I know that I can do something like the following in a loop but I still don't follow very well how it works.
for ...
3
votes
3answers
554 views
Win32: How to convert string to a date?
In Windows, i want to parse a string as a date using an exact format string.
For example, given the string
"6/12/2010"
and the format:
"M/d/yyyy"
i want to convert the string to a date, while ...
3
votes
13answers
4k views
How do I extract a substring from a string until the second space is encountered?
i have a string like this:
"o1 1232.5467 1232.5467 1232.5467 1232.5467 1232.5467 1232.5467"
How do I extract only "o1 1232.5467"?
The number of characters to be extracted are not the same always.. ...
2
votes
2answers
40 views
Parse string in javascript
How can I parse this string on a javascript,
var string = "http://www.facebook.com/photo.php?fbid=322916384419110&set=a.265956512115091.68575.100001022542275&type=1";
I just want to get the ...
2
votes
5answers
41 views
Want to find and remove word only from string using - PHP
I hav especific need of removing word from string, But I am having problem when that word has dot (.) character.
Lets see here is the string and what I have tried so far?
$result = 'Hello Ka ...
2
votes
1answer
149 views
Documentum DQL: How can I get UTC time zone for Date columns to parse to .NET?
Documentum (DQL via DFC) always returns Date result columns as a string formatted like this:
Wed Oct 19 16:01:59 PDT 2011
...and the .NET DateTime.Parse function chokes on this - especially the ...
2
votes
3answers
55 views
Parsing number from string
How do I split selected value, seperate the number from text in jQuery?
Example:
myselect contains c4
Just get only the number 4.
$('select#myselect').selectToUISlider({
sliderOptions: {
...
2
votes
1answer
341 views
Implementing T9 text prediction
I have a T9 dictionary in memory (trie/hash_map). The dictionary contains word-rating pairs, so when a word is picked from dictionary, its rating increments, and the word-rating pair goes up in the ...
2
votes
2answers
403 views
Grabbing hidden inputs as a string (Using PHP Simple HTML DOM Parser)
So I have a form that has 4 inputs, 2 text, 2 hidden. I've grabbed the two text input values from the name, which are (get_me_two, get_me_three) and I've also grabbed the form action which is ...
2
votes
1answer
92 views
Regular Expression Help
I guess this is simple, but I am quite bad at this.
I want to replace the following strings:
chrome, internet explorer, mozlla, opera
or
john, jack, jill, bill
with
?, ?, ?, ?
I need a regular ...
2
votes
1answer
85 views
Javascript - value exists, then disappears, then appears again?
This is driving me nuts. I can't work it out stepping through with Firebug either. Can someone please explain what is going on here?
Basically I have an incoming text file where each line contains a ...
2
votes
5answers
83 views
line split array on console?
lets take for example i have a string declared:
string master = "1.2.3.4";
which is in the form of:
major.minor.project.build
how do i get a string "major","minor","project" and "build" assigned ...
2
votes
3answers
38 views
Find URLs in .NET?
Given a list of strings, I'm interested in finding which ones are valid http:// URLs. My first approach would be to use a regex and do something like this:
var urls = strs.Where(str => ...
2
votes
5answers
178 views
How Do I Pull Info from String
I am trying to pull dynamics from a load that I run using bash. I have gotten to a point where I get the string I want, now from this I want to pull certain information that can vary. The string ...
2
votes
2answers
76 views
Programming idiom to parse a string in multiple-passes
I'm working on a Braille translation library, and I need to translate a string of text into braille. I plan to do this in multiple passes, but I need a way to keep track of which parts of the string ...
1
vote
2answers
51 views
Is there a better way than this to sanitize hyperlinks from text inputs?
I'm trying to remove any hyperlinks from given text and overwrite any fragments that appear to be hyperlinks, replacing them with the text [LINK REMOVED FROM EVIDENCE AT REQUEST OF TRIAL JUDGE]
...
1
vote
1answer
31 views
Parsing a string into a custom object based on different criteria
As part of a small project I'm working on, I need to be able to parse a string into a custom object, which represents an action, date and a few other properties. The tricky part is that the input ...
1
vote
1answer
115 views
Parsing a Connection String
Is there a standard library or code snippet to get a value with a connection string like this?
string connstr = "DataServiceUrl=http://localhost/foo;" +
...
1
vote
1answer
30 views
Extracting SubString without knowing Index
I have a string which is something like this
<term id="123" date="2011-19-08">hello</term>
now i want to extract the date(format,separator may be different) from the above string and ...
1
vote
3answers
47 views
Create BigInt with a String encoded to base 16
I am trying to parse a String like this:
f2cff0a43553b2e07b6ae3264bc085a
into a BigInt however when using the String constructor for BigInt I obviously get a Number format exception:
BigInteger bi ...
1
vote
1answer
135 views
Creating SQL Server JSON Parsing/Query UDF
First of all before I get into the question, I'll preface this with the fact that I know that this is a "bad" idea. But for business reasons it is something that I have to come up with a solution to, ...
1
vote
2answers
55 views
untangling directory separator madness using string manipulation?
I'm working on converting a website. It involved standardizing the directory structure of images and media files. I'm parsing path information from various tags, standardizing them, checking to see if ...
1
vote
2answers
58 views
How do I match a 10 character sub-string starting with 'H' in a longer string with Ruby?
I have the following string:
/Users/patelc75/Documents/code/haloror/dialup/H200000787_1313406125/H200000787_1313389058_1.xml
In Ruby, how do I extract the first 10 character substring that starts ...
1
vote
1answer
39 views
Isolate the state abbreviation of and address
Is there a way to pull out the state abbreviation from an address? I am using an event calendar extension for Joomla for my site and it currently only stores the city and county separately in the ...
1
vote
1answer
83 views
Finding and adding to a .kml file using python
I am not a very good coder. But I really want to automate something I have to do at work. Basically, I have a bunch of placemarkers in google earth showing hand-holes of a municipal fiber network. I ...
1
vote
3answers
101 views
php regular expression checking for name [closed]
Possible Duplicate:
PHP regex to check a English name
I'm trying to write a regular expression that will check a name field that i have for a user.
I want it to check for firstname SPACE ...
1
vote
2answers
187 views
Parsing / Extracting Text from String in Rails?
I have a string in Rails, e.g. "This is a Twitter message. #books War & Peace by Leo Tolstoy. I love this book!", and I want to parse the text and extract only certain phrases, like "War & ...
1
vote
3answers
55 views
Regular Expression Troubles
Given the following type of string:
"#First Thing# #Another One##No Space# Main String #After Main# #EndString#"
I would like to come up with a regular expression that can return all the text ...