Sponsored Content
Top Forums Programming How to write in other language in text/xml file by reading english text/xml file using C++? Post 303018350 by Corona688 on Monday 4th of June 2018 11:24:37 AM
Old 06-04-2018
wchar/wstring is helpful when you want to output wchar/wstring.

Do you? What character set do you need to deal with?

If you don't know, could you find out?
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Plz Help To convert xml file to text file using bourn shell scripts

If someone out there could help me out with this problem. I would really appreciate it. I am trying to convert xml into text file(fixed length) using Unix Borne shell scripts. My xml file: <root> <header_rec recordtype="00"> <record_id>00</record_id> <country_code>AK></country_code>... (0 Replies)
Discussion started by: ram2s2001
0 Replies

2. Shell Programming and Scripting

reading and searching xml element text in script

well i have this xml file here: this file is called filereader.xml <?xml version="1.0" encoding="UTF-8"?> <file> <file1> <filecopy>thefile.txt</filecopy> <filecopy>thefile2.ppt</filecopy> </file1> </file> hi..i got this problem....hmm how do i write a... (6 Replies)
Discussion started by: forevercalz
6 Replies

3. Shell Programming and Scripting

reading and searching xml element text in script

well i have this xml file here: this file is called filereader.xml <?xml version="1.0" encoding="UTF-8"?> <file> <file1> <filecopy>/new/test/thefile.txt</filecopy> <filecopy>/new/test/thefile2.ppt</filecopy> </file1> </file> i need to write the script that search for the Bold text... (2 Replies)
Discussion started by: forevercalz
2 Replies

4. Shell Programming and Scripting

How to extract text from xml file

I have some xml files that got created by exporting a website from RedDot. I would like to extract the cost, course number, description, and meeting information. <?xml version="1.0" encoding="UTF-16" standalone="yes" ?> - <PAG PAG0="3AE6FCFD86D34896A82FCA3B7B76FF90" PAG3="525312"... (3 Replies)
Discussion started by: chrisf
3 Replies

5. Shell Programming and Scripting

KSH - help needed for creating a script to generate xml file from text file

Dear Members, I have a table in Oracle DB and one of its column name is INFO which has data in text format which we need to fetch in a script and create an xml file of a new table from the input. The contents of a single cell of INFO column is like: Area:app - aam Clean Up Criteria:... (0 Replies)
Discussion started by: Yoodit
0 Replies

6. Shell Programming and Scripting

Filter a .kml file (xml) with data set from text file

I have a .kml file. So I want filter the .kml to get only the tags that have this numeric codes that they are in a text file 11951 11952 74014 11964 11965 11969 11970 11971 11972 60149 74018 74023 86378 11976 11980 11983 11984 11987 (5 Replies)
Discussion started by: pcoj33
5 Replies

7. Shell Programming and Scripting

Get extract text from xml file

Hi Collegue, i have a file say a.xml. it has contents <bpelFault><faultType>1</faultType><genericSystemFault xmlns=""><part name="payload"><v2:Fault... (10 Replies)
Discussion started by: Jewel
10 Replies

8. UNIX for Dummies Questions & Answers

Reading XML file and print the values in the text file using Linux shell script

hi guys, i want help... Reding XML file and print the values into the text file using linux shell script file as per below xml file <sequence> <Filename>aldorzum.doc</Filename> <DivisionCode>US</DivisionCode> <ContentType>Template</ContentType> <ProductCode>VIMZIM</ProductCode> </sequence>... (1 Reply)
Discussion started by: sravanreddy
1 Replies

9. UNIX for Dummies Questions & Answers

Reading Xml file and print the values into the text file in columnwise?

hi guys, i want help... Reding XML file and print the values into the text file using linux shell script file as per below xml file <sequence> <Filename>aldorzum.doc</Filename> <DivisionCode>US</DivisionCode> <ContentType>Template</ContentType> <ProductCode>VIMZIM</ProductCode> </sequence>... (4 Replies)
Discussion started by: sravanreddy
4 Replies
orber_tc(3erl)						     Erlang Module Definition						    orber_tc(3erl)

NAME
orber_tc - Help functions for IDL typecodes DESCRIPTION
This module contains some functions that gives support in creating IDL typecodes that can be used in for example the any types typecode field. For the simple types it is meaningless to use this API but the functions exist to get the interface complete. The type TC used below describes an IDL type and is a tuple according to the to the Erlang language mapping. EXPORTS
null() -> TC void() -> TC short() -> TC unsigned_short() -> TC long() -> TC unsigned_long() -> TC long_long() -> TC unsigned_long_long() -> TC wchar() -> TC float() -> TC double() -> TC boolean() -> TC char() -> TC octet() -> TC any() -> TC typecode() -> TC principal() -> TC These functions return the IDL typecodes for simple types. object_reference(Id, Name) -> TC Types Id = string() the repository ID Name = string() the type name of the object Function returns the IDL typecode for object_reference. struct(Id, Name, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the struct ElementList = [{MemberName, TC}] a list of the struct elements MemberName = string() the element name Function returns the IDL typecode for struct. union(Id, Name, DiscrTC, Default, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the union DiscrTC = TC the typecode for the unions discriminant Default = integer() a value that indicates which tuple in the element list that is default (value < 0 means no default) ElementList = [{Label, MemberName, TC}] a list of the union elements Label = term() the label value should be of the DiscrTC type MemberName = string() the element name Function returns the IDL typecode for union. enum(Id, Name, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the enum ElementList = [MemberName] a list of the enums elements MemberName = string() the element name Function returns the IDL typecode for enum. string(Length) -> TC Types Length = integer() the length of the string (0 means unbounded) Function returns the IDL typecode for string. wstring(Length) -> TC Types Length = integer() the length of the wstring (0 means unbounded) Function returns the IDL typecode for wstring. fixed(Digits, Scale) -> TC Types Digits = Scale = integer() the digits and scale parameters of a Fixed type Function returns the IDL typecode for fixed. sequence(ElemTC, Length) -> TC Types ElemTC = TC the typecode for the sequence elements Length = integer() the length of the sequence (0 means unbounded) Function returns the IDL typecode for sequence. array(ElemTC, Length) -> TC Types ElemTC = TC the typecode for the array elements Length = integer() the length of the array Function returns the IDL typecode for array. alias(Id, Name, AliasTC) -> TC Types Id = string() the repository ID Name = string() the type name of the alias AliasTC = TC the typecode for the type which the alias refer to Function returns the IDL typecode for alias. exception(Id, Name, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the exception ElementList = [{MemberName, TC}] a list of the exception elements MemberName = string() the element name Function returns the IDL typecode for exception. get_tc(Object) -> TC get_tc(Id) -> TC Types Object = record() an IDL specified struct, union or exception Id = string() the repository ID If the get_tc/1 gets a record that is and IDL specified struct, union or exception as a parameter it returns the typecode. If the parameter is a repository ID it uses the Interface Repository to get the typecode. check_tc(TC) -> boolean() Function checks the syntax of an IDL typecode. Ericsson AB orber 3.6.20 orber_tc(3erl)
All times are GMT -4. The time now is 03:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy