Questions tagged [blank-line]

Blank-Line refers to any existence of an empty line of data or the creation of an empty line on a form created by the *enter* or *return* keys.

Blank-Line, when referring to data, is used in the description of any record in a table/query where data does not exist. This could be in reference to creating a blank line of data, or determining where a blank line of data exists.

Blank-Line, when referring to a form, is used in the description of any line which contains nothing but white space. This could be in reference to shifting data downward or upward in a form or report, or shifting controls downward or upward in a form or report.

237 questions
1
vote
1 answer

How to keep newlines and empty lines when geting remote url content using HttpURLConnection?

I am using following code to obtain some data from my website using android HttpURLConnection method and place it on webview textarea.But unfortunately the obtained data ignores all newlines and empty lines. Could an expert show me how i can keep…
user1788736
  • 2,727
  • 20
  • 66
  • 110
1
vote
2 answers

Filling Blank values from value from above in Qlik Sense?

Qlik Sense is a BI tool in which I need to fill the blank values with a value from above (image from this related thread) The solution in Qlik View is the following by this thread but in Qlik Sense, it only fills one value below the above…
hhh
  • 50,788
  • 62
  • 179
  • 282
1
vote
1 answer

Intellij GWT Super dev mode shows blank source code

Intellij GWT Super dev mode shows blank source code A couple months ago I had setup IntelliJ GWT super mode and when I was using the Chrome Dev tool I could see the .java files in the "sources" tab. Today however, all of the .java files of my…
Paulus2
  • 437
  • 5
  • 15
1
vote
3 answers

Deleting/excluding empty lines from being saved and used in PHP

I'm currently fighting with excluding empty lines to be saved into the array $presidents (and by doing that, solving a problem where the foreach loop echoes the strings without Names). I've tried a few things which should have worked, in my amateur…
Rarkas
  • 23
  • 3
1
vote
1 answer

Excel: use previous value if condition not met, ignoring blanks

I'm trying to match data with IF and vlookup but can't seem to get it to work. Task is: Row 1 A B C D Row 2 1 251 8:00:00 Row 3 2 253 Row 4 1 252 Row 5 2 254 8:00:01 Row 6 1 257…
yusica
  • 255
  • 2
  • 5
  • 13
1
vote
1 answer

In notepad++, what is the difference between remove empty lines and remove empty lines (containing blank characters)?

This is under line operations. Sounds like the same thing to me, confusing. Seems like am empty line is made up of blank characters.
Rich
  • 19
  • 5
1
vote
2 answers

Insert empty line after the contents of a file in a new file

This is a simple problem, I'm just stuck on it. I am taking the contents of a bunch of different files and printing each file's name as a header before its contents. That much works. But I want to have an empty line separating the the contents of…
lynkyra
  • 59
  • 5
1
vote
1 answer

Blank spaces between vertical divs

I'm very new (as in, just the past few days) to html and css and I'm trying to create a website. I found a bunch of answers related to my question but still couldn't figure out how to fix my code and remove the white space between the divs. Any…
Mary
  • 35
  • 3
1
vote
3 answers

How to calculate an average, skipping blanks

I have a spreadsheet, where I keep the times I come in and leave at and from work. In the next column, I summarise those values in order to see the amount of time I spent at work, which gives me the amount of time I spent at work during a week. Now…
Dominique
  • 16,450
  • 15
  • 56
  • 112
1
vote
2 answers

can't remove blank lines in txt file with R

I am doing a text analysis with R and needed to convert the first letters of the sentences into lowercase while keeping the other capitalized words the way they are. So I used the command x <- gsub("(\\..*?[A-Z])", '\\L\\1', x,…
1
vote
0 answers

Inserting an empty Facebook comment

This seems to be a completely empty Facebook comment. Comments consisting solely of newlines or spaces are not allowed, but a blank comment can be made by inserting a soft hyphen (via ALT 0173). However, unlike the comment in the link, a soft hyphen…
sishke
  • 43
  • 5
1
vote
2 answers

How can I exclude blank lines with awk?

Question How can I exclude lines starting with a space character, and that have nothing else on the line? With awk, I want to print the line Need to print, but it's also printing the blank line. How can I exclude it? Script: test.awk $0…
Sigularity
  • 917
  • 2
  • 12
  • 28
1
vote
2 answers

remove "empty" lines from a text file shell script

I have a set of output files and some are as below: 133 0.00295 nurse merit respect muslim 134 0.00292 high dangerous reassure full 135 0.00048 136 0.0039 experience darren 137 0.00097 _ _param_ui_control_scripts_save _param_pattern_value…
samsamara
  • 4,630
  • 7
  • 36
  • 66
1
vote
2 answers

Inserting a blank row after a group of data, and performing a summation on that data

I found this solution, and it is almost what I need. However, I also need some calculations performed on the data after it is formatted. I would like to insert 2 blank rows after each group of data, and then sum certain columns after inserting the…
1
vote
2 answers

Read a blank column in a CSV file with Ruby

One line of the CSV is: 550012207,1,,,Y,,,,,Y,, I'm doing: product_id_a = data_values[0] quantity_a = data_values[1] product_id_b = data_values[5] Each line is a scenario to put an order through, and some scenarios call for two products to be…
Troy
  • 23
  • 4