Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xmtextreplacewcs(3) [redhat man page]

XmTextReplaceWcs(library call)											    XmTextReplaceWcs(library call)

NAME
XmTextReplaceWcs -- A Text function that replaces part of a wide character string in a Text widget SYNOPSIS
#include <Xm/Text.h> void XmTextReplaceWcs( Widget widget, XmTextPosition from_pos, XmTextPosition to_pos, wchar_t *wcstring); DESCRIPTION
XmTextReplaceWcs replaces part of the wide character string in the Text widget. The character positions begin at zero and are numbered sequentially from the beginning of the text. An example text replacement would be to replace the second and third characters in the text string. To accomplish this, the from_pos param- eter must be 1 and the to_pos parameter must be 3. To insert a string after the fourth character, both the from_pos and to_pos parameters must be 4. This routine calls the widget's XmNvalueChangedCallback and verification callbacks, either XmNmodifyVerifyCallback or XmNmodifyVerifyCall- backWcs, or both. If both verification callback lists are registered, the procedures of the XmNmodifyVerifyCallback list are executed first and the resulting data is passed to the XmNmodifyVerifyCallbackWcs callbacks. This routine calls the widget's XmNmotionVerifyCallback callback when from_pos is less than or equal to the cursor position. widget Specifies the Text widget ID from_pos Specifies the start position of the text to be replaced to_pos Specifies the end position of the text to be replaced wcstring Specifies the wide character string value to be added to the Text widget For a complete definition of Text and its associated resources, see XmText(3). RELATED
XmText(3) and XmTextReplace(3). XmTextReplaceWcs(library call)

Check Out this Related Man Page

XmTextReplace(library call)											       XmTextReplace(library call)

NAME
XmTextReplace -- A Text function that replaces part of a text string SYNOPSIS
#include <Xm/Text.h> void XmTextReplace( Widget widget, XmTextPosition from_pos, XmTextPosition to_pos, char * value); DESCRIPTION
XmTextReplace replaces part of the text string in the Text widget. The character positions begin at 0 (zero) and are numbered sequentially from the beginning of the text. An example text replacement would be to replace the second and third characters in the text string. To accomplish this, the parameter from_pos must be 1 and to_pos must be 3. To insert a string after the fourth character, both parameters, from_pos and to_pos, must be 4. This routine calls the widget's XmNvalueChangedCallback and verification callbacks, either XmNmodifyVerifyCallback or XmNmodifyVerifyCall- backWcs, or both. If both verification callback lists are registered, the procedures of the XmNmodifyVerifyCallback list are executed first and the resulting data is passed to the XmNmodifyVerifyCallbackWcs callbacks. The XmNmotionVerifyCallback is generated if to_pos is less than or equal to the cursor position and the length of value is not the same as the length of the text being replaced, or if the cursor position is between from_pos and to_pos, and the distance from the cursor position to from_pos is greater than the length of value. widget Specifies the Text widget ID from_pos Specifies the start position of the text to be replaced to_pos Specifies the end position of the text to be replaced value Specifies the character string value to be added to the text widget For a complete definition of Text and its associated resources, see XmText(3). RELATED
XmText(3) and XmTextReplaceWcs(3). XmTextReplace(library call)
Man Page

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Edit and insert character in a text file

Hello All, Can somebody please help me how to accomplish the following : I have a text file called data.txt that has the following information : M|88494-998494 M|98jd#0094 M|88394-994049 M|GFG9980#009944 and so on... I need to replace the value of M to either "S" or "X"... (3 Replies)
Discussion started by: negixx
3 Replies

2. Shell Programming and Scripting

Moving part of Text in a file

Hi, I have this text in a file where I need to move part of the text.... <Relation1 OriginatingObjectID="Holding_1" RelatedObjectID="Party_1" id="Relation_1"> <OriginatingObjectType tc="4">Holding</OriginatingObjectType> <RelatedObjectType tc="6">Party</RelatedObjectType>... (4 Replies)
Discussion started by: mgirinath
4 Replies

3. Shell Programming and Scripting

In Help, Substitute Text ...

i'm writing a script that will extract and substitute a certain part of a data. i'm having trouble with the substituting part ... Here's my data looks like: 01/01/08-001-23:46:18-01/01/08-23:50:43 01/01/08-003-23:45:19-01/01/08-23:55:49 01/01/08-005-23:52:18-01/01/08-23:58:52 i want to... (6 Replies)
Discussion started by: solidhelix08
6 Replies

4. Shell Programming and Scripting

Insert Block of Text into a File After a Ranged Search

Hello, I've been racking my brain trying to find a good way to accomplish a task. I need to insert a block of text into a file in the format of FirewallRuleSet proxy-users { FirewallRule allow to 0.0.0.0/0 } I need to insert this block of text (which could have sed special... (2 Replies)
Discussion started by: 0xception
2 Replies

5. UNIX for Dummies Questions & Answers

Insert Text on lines having the string word

I need help on how I can accomplish my task. I hope someone can help me since I've researching and trying to accomplish this for hours now. Basically, I need to comment-out (or insert a # sign in the beginning of the line) a line when the line has the specific word I am searching. Example I have... (3 Replies)
Discussion started by: Orbix
3 Replies

6. Shell Programming and Scripting

Help with Text file

I have a file containing some data like I want to add a text at the end of each line so that it would look something like this How do I do this.? Thanks for the help. (4 Replies)
Discussion started by: pparthiv
4 Replies

7. Shell Programming and Scripting

Scripting question, replacement in xml file

Hi Anybody can help me to make a script that replace string "Su saldo es" with "Your balance" in XML block if it start with Text Id=98 and Text Id= 12 only sample of part of file below <Text Id="98"> <Language id="1">Su saldo es $mainAccountBalance1Tiene ademas $dedicatedAccount1Balance1... (13 Replies)
Discussion started by: Ashu_099
13 Replies

8. Shell Programming and Scripting

Text replacement with awk or sed?

Hi guys, I worked for almost a half-day for the replacement of some text automatically with script. But no success. The problem is I have hundred of files, which need to be replaced with some new text. It's a painful work to work manually and it's so easy to do it wrong. For example, I... (2 Replies)
Discussion started by: liuzhencc
2 Replies