Questions tagged [multiline]

Text that spans more than one line is considered "multiline". Concerns about wrapping, spacing, techniques and best practices.

Text that spans more than one line is considered "multiline". Concerns about wrapping, spacing, techniques and best practices, as well as language and platform-specific techniques for displaying text in a multiline format.

1916 questions
0
votes
3 answers

Append multiline tab delimited text form bash script with EOF, EOT, EOL

I want to insert after a specific string occurrence a multi-line text. The expected output is: configuration options: option 1 option 2 option 3 option 4 option 5 option 6 option 7 option 8 option…
belabrinel
  • 851
  • 8
  • 15
0
votes
1 answer

Line breaks from data returned with REST

I have an object returned from REST service, one property of this object is supposed to be multiple lines of text, sometimes it's returned like the following in html (when viewing in dev tools) "this point will be as follows: ↵↵1- point info here…
Jacky
  • 393
  • 1
  • 3
  • 13
0
votes
1 answer

Issues reading a multiline field in mini-XML 2.7

I am using C with mini-XML 2.7, and reading a XML doc. All is fine, except that my XML has a section that looks like this:
Tucho
  • 1
0
votes
1 answer

Automatic multipage with multiline text

I have got a dynamic text, which has an unknown number of lines. This number of lines can be between 1 and for example 1000. Now I want do create a PDF document, which automatically creates a new page if a specific number of lines is reached. I…
Benziner
  • 43
  • 6
0
votes
3 answers

How can I set a multiline UILabel inside UITableCell on Swift 3?

I am trying to set a multiline UILabel, inside an UITableCell. That UILabel has a proportional width taking as reference the screen of the device (with a multiplier). The text inside of it can change so I need to fit on the UILabel being able to…
Francisco Romero
  • 12,787
  • 22
  • 92
  • 167
0
votes
1 answer

Wrap recursive-expanded variable into new one with the same name

I can use += to append to recursive-expanded variable and it works well. In real world it's sometimes required to prepend or to wrap variable into some code without expanding. I've found similar question here GNU make: prepend a recursively expanded…
Sergey
  • 323
  • 4
  • 10
0
votes
2 answers

PCRE Regex - How to return matches with multiline string looking for multiple strings in any order

I need to use Perl-compatible regex to match several strings which appear over multiple lines in a file. The matches need to appear in any order (server servernameA.company.com followed by servernameZ.company.com followed by servernameD.company.com…
Kurt W
  • 321
  • 2
  • 15
0
votes
0 answers

logstash multiline aggregation?

I'm looking at pulling in a log from a mail system where each transaction is over multiple lines. Each line will have different parts of the transaction and they can be interwoven with other transaction messages - so multiple threads can be…
Jason
  • 3
  • 2
0
votes
2 answers

powershell multiline regex block

I'm literally pulling hairs out in frustration on trying to use multiline regex, I've very little experience with Powershell, and while the examples I've tried work, as soon as I start to adjust them for what I need it never gives any results. My…
jalexander
  • 35
  • 6
0
votes
0 answers

How to get parse of Caused by of java logs in Logstash grok-filter?

Below is my config file: filter { if [type] == "syslog" { multiline { pattern => "^%{TIMESTAMP_ISO8601}" negate => true what => "previous" max_age => 7 add_tag => [ "multiline" ] …
b.bab
  • 9
  • 3
0
votes
2 answers

Logstash - FileBeat multiline setting groups too much messages

I've configured FileBeat to send multiline logs using the following config: - paths: - /opt/wls/domains/filename.log input_type: log document_type: log_doc multiline: pattern: ^%{TIMESTAMP_ISO8601} negate: true match:…
László Halász
  • 428
  • 5
  • 24
0
votes
0 answers

java8 parallel stream and custom format multiline file

Say I have some custom file format that has some logical format defined. I'd like to "unmarshall" the "objects" from the file. Then how can I use java8 Streams in a parallel fashion to unmarshall the objects? Is this unreasonable can you explain a…
0
votes
2 answers

FOR loop to match a name from file then get 4 values from second file

Hi I need some help getting this to work :) I have a file with names in a list. FILE A. SomeNameA SomeNameB SomeNameC etc Now I need to get a set of lines from FILE…
0
votes
2 answers

Group of items with responsive equal width in multi-line context, issue with last-line

After researching the question for a while and considering all the float and text-align alternatives, I'm mostly happy with the solution that I've found using flexbox but there is an issue with the last line (when it overflows) in that the items are…
Paolo
  • 61
  • 8
0
votes
1 answer

making hyperlinks clickable in multiline fields

I have a requirement in SharePoint, in which I have a multi line field (with Plain text type) which stores description. In some of the list item the description contains urls. But in the page its showing as real text instead of links. I need to…
MAC
  • 6,277
  • 19
  • 66
  • 111
1 2 3
99
100