Tagged Questions
The multilinestring tag has no wiki summary.
30
votes
4answers
7k views
Paste a multi-line Java String in Eclipse
Unfortunately, Java has no syntax for multi-line string literals. No problem if the IDE makes it easy to work with constructs like
String x = "CREATE TABLE TEST ( \n"
+ "A INTEGER NOT ...
7
votes
4answers
4k views
C#: Looping through lines of multiline string
What is a good way to loop through each line of a multiline string without using much more memory (for example without splitting it into an array)?
5
votes
1answer
389 views
Java 7 - Multiline strings
I've read that multiline string literals were proposed to be added in Java 7.
Although I can't find any documentation saying definitely that they have been. I'd like to know if they are, because ...
3
votes
6answers
122 views
C# insert string in multiline string
I have a multiline string (from a txt-file using ReadAllText).
the string looks like this:
R;0035709310000026542510X0715;;;
R;0035709310000045094410P1245;;;
R;0035709310000026502910Z1153;;;
I ...
3
votes
5answers
3k views
Notepad++ newline in regex
Suppose you have this file:
x
a
b
c
x
x
a
b
c
x
x
and you want to find the sequence abc (and select the whole 3 lines) with Notepad++ . How to express the newline in regex, please?
2
votes
2answers
336 views
Scala multiline string placeholder
This question is related to ( Why is there no string interpolation in Scala? ), but deals more specifically with multi-line strings.
I've just about bought into Martin's suggestion for simple string ...
2
votes
1answer
328 views
Select a tag from multiline html code using preg_match_all
I want to use the php function preg_match_all to find a part of the html code to replace it by another one.
This is what I need to find:
<attachfiles>
tag{link} attr{rel="stylesheet" ...
2
votes
1answer
465 views
How to convert a GEOS MultiLineString to Polygon using Python?
I am developing a GeoDjango application where users can upload map files and do some basic mapping operations like querying features inside polygons.
I recognized that users happen to upload ...
2
votes
4answers
492 views
Are multiline queries sql-injection safe?
This might be a stupid question.
Or maybe my hacking skills are limited (I don't practice them at all).
I have a query that looks like this:
<?php
$query =<<<eot
SELECT ...
1
vote
3answers
52 views
How to test an interpreter using JUnit?
I am writing tests for an interpreter from some programming language in Java using JUnit framework. To this end I've created a large number of test cases most of them containing code snippets in a ...
1
vote
1answer
306 views
MySQL storing google maps lat/long data
I have created a map which allows the user to plot multiple markers with the intention on storing them in a database table. The original plan was to store multiple rows per one map like so:
...
1
vote
4answers
315 views
Regex Pattern to Extract Email Data
I'm retrieving raw text (includes header, and message) from a POP server. I need to capture everything after the header which is terminated by a blank line between it and the user message.
At the ...
1
vote
1answer
153 views
Editor not considering MultilineStringEditor as a unique editor
I have the following property:
[Editor("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", ...
0
votes
2answers
60 views
SQL Server 2008 - Spatial MultiLineString problems in creation
I have 3 line string. They are correct but when we try create a MultiLineString SQL Server 2008 throws an exception:
System.ArgumentException: 24200: The specified input does not
represent a ...
0
votes
1answer
56 views
How to arrange my layout for a large text in android?
I set the parent view as a scrollview. Then I put a TextView to display my help text. But the string resource i use to put in the textview has limited characters. My help text is large. Please provide ...
0
votes
1answer
61 views
Net::HTTP post with multiline param
I'd like to post a multiline param with Net::HTTP in Ruby. I tried adding \n or \r\n in the param string but it just arrives at destination as \n or \r\n.
...
0
votes
3answers
321 views
Why multiline string have such strange syntax? ( when they do )
Probably is something really simple that I'm missing, but what's wrong with having a string going in multiple lines?
For instance, Ruby is:
text = <<END
Some
text
END
And ...
0
votes
1answer
123 views
How do you select Arcs inside a boundary in PostGIS?
I'm searching an answer for this question and all I found on
http://postgis.refractions.net/documentation/manual-1.3/ch04.html#id2572194
is
SELECT road_id, road_name
FROM roads
WHERE roads_geom ...