delch(3cur)delch(3cur)Name
delch, mvdelch, mvwdelch, wdelch - remove character from window
Syntax
#include <cursesX.h>
int delch()
int wdelch(win)
WINDOW *win;
int mvdelch(y, x)
int y, x;
int mvwdelch(win, y, x)
WINDOW *win;
int y, x;
Description
The routine deletes the character under the cursor in the default window. All characters to the right on the same line are moved to the
left one position and the last character on the line is filled with a blank. The cursor position does not change.
The routine deletes the character under the cursor in the specified window. All characters to the right on the same line are moved to the
left one position and the last character on the line is filled with a blank. The cursor position does not change.
The routine moves the cursor to the specified position in the default window. The character found at this location is deleted. All char-
acters to the right on the same line are moved to the left one position and the last character on the line is filled with a blank. The
cursor position does not change.
The routine moves the cursor to the specified position in the specified window. The character found at this location is deleted. All
characters to the right on the same line are moved to the left one position and the last character on the line is filled with a blank. The
cursor position does not change.
The routines and are macros.
Return Values
The and functions return OK on success and ERR on error.
delch(3cur)
Check Out this Related Man Page
delch(3NCURSES)delch(3NCURSES)NAME
delch, wdelch, mvdelch, mvwdelch - delete character under the cursor in a curses window
SYNOPSIS
#include <curses.h>
int delch(void);
int wdelch(WINDOW *win);
int mvdelch(int y, int x);
int mvwdelch(WINDOW *win, int y, int x);
DESCRIPTION
These routines delete the character under the cursor; all characters to the right of the cursor on the same line are moved to the left one
position and the last character on the line is filled with a blank. The cursor position does not change (after moving to y, x, if speci-
fied). (This does not imply use of the hardware delete character feature.)
RETURN VALUE
All routines return the integer ERR upon failure and an OK (SVr4 specifies only "an integer value other than ERR") upon successful comple-
tion.
Functions with a "mv" prefix first perform a cursor movement using wmove, and return an error if the position is outside the window, or if
the window pointer is null.
NOTES
Note that delch, mvdelch, and mvwdelch may be macros.
PORTABILITY
These functions are described in the XSI Curses standard, Issue 4. The standard specifies that they return ERR on failure, but specifies
no error conditions.
SEE ALSO ncurses(3NCURSES)delch(3NCURSES)
I'm having a problem when the first line or first character of a file is blank. I need to get rid of both of them when they occur but don't want to delete the line. Does anyone have any suggestions? (7 Replies)
Hi,
I have an urgent task here. I am required to sort a flat file based on multiple columns which are based on the character position in that line. I am restricted to use the character position instead of the space and sort +1 +2 etc to do the sorting.
I understand that there is a previous... (8 Replies)
I need your help,
I want to add a text every 2nd line and also a blank line after 3 line
(In the output 2nd line is "changetype: modify" and every 4th line is blank line)
Input file format
dn: abc
orclsourceobjectdn: abcd
dn: bcd
orclsourceobjectdn: bcda
dn: cba
orclsourceobjectdn:... (7 Replies)
How can I remove the last character from each line of a file?
This must be done without "funny" characters, as I want to transfer the code to/from Windows.
Any ideas? (17 Replies)
Hello,
I am testing some data to get line number at cursor position 9 and found some problem, the code is below.Assume we got 3 attribute. At second attribute, there are some data(eg.A41/A6) missing like at the fourth and six line
11006 A41 1888
11006 ... (7 Replies)
Hi Guys,
I have a file in which each set of records are separated by two blank line. I want to replace it with a single blank line.
Can you guys help me out?
Regards,
Magesh (9 Replies)
Hi,
I need to replace a character in a specific position in only the first line of a
file (actually many files). Change T to a P in position 103.
I'm on solaris and my implementation of sed doesn't have the -r capability.
Thx,
Tim (8 Replies)
Hi Experts,
I have data coming in 4 columns and there are new line characters \n in between the data. I need to remove the new line characters in the middle of the row and keep the \n character at the end of the line.
File is comma (,) seperated.
Eg:
ID,Client ,SNo,Rank
37,Airtel \n... (8 Replies)
I need to remove all line breaks in a document after a match, until there is a blank line.
Example below, after the match "THE GREEN TABLE" remove line breaks until a blank line. Then, after the match "THE BLUE TABLE" do the same.
Before:
THE GREEN TABLE
Lorem ipsum dolor sit amet,... (14 Replies)
Hi I have a text file that I want to change some of the characters based on their position. My file contain multiple lines and characters should be counted continuously line by line. For example, I want to convert the 150th T to C. What can I do? Here is a portion of my file:... (10 Replies)
Hi, im still new in unix.
i want to ask how to delete character on specific position in line, lets say i want to remove 5 character from position 1000, so characters from position 1000-1005 will be deleted.
i found this sed command can delete 4 characters from position 10, but i dont know if... (7 Replies)
hello.
How to remove all characters in a line from first character ( a $ ) until and including the third occurrence of that character ( $ ).
Any help is welcome. (10 Replies)
Hi,
I have a file with multiple lines(fixed width dat file). I want to search for '02' in the positions 45-46 and if available, in that lines, I need to replace value in position 359 with blank. As I am new to unix, I am not able to figure out how to do this. Can you please help me to achieve... (9 Replies)
Hello,
I am on AIX.
When I encounter extended ascii characters and special characters on a file I need to print..
Byte position, actual character and line number.
Is there a simple command that can give me the above result ?
Thanks in advance (38 Replies)
Hi,
I need to remove line breaks from a file, but only the ones at specific position.
Input file:
this is ok
this line is divided at posit
ion 30. The same as this one,
also position 30
the rest of lines are ok
with different lengths
The longest ones are always s
plitted at same... (15 Replies)