How to add non printable character in label

hi ,
I want to add white space or tab in label of output label
thanks

Hi,
have you tried   for blank and "	" for tab   ?
Frank

Similar Messages

  • Spliting a string based on Non Printable character

    Hi,
    i have a requirement where i have to split a String based in non printable character " MYU(ascii: 230);
    es: ""This is to test æ raaaaaaaaaaaaaaaaa æ AAA010224544 æ 7118288888 æ
    æ is a not printable character and its ascci is 230..
    iam getting that string from form how to split it in Java..
    Any suggestions...?

    One of many ways
        String initString = "This is to test æ raaaaaaaaaaaaaaaaa æ AAA010224544 æ 7118288888 æ";
        String[] tokens = initString.split(String.valueOf((char)230));
        for (String string : tokens)
          System.out.println(string.trim());
        }

  • How to show non-printable characters on the new pages

    I know some Pages features had been removed, some of them add again, and some hidden. So, I would like to know if it is possible to show the non-printable character on this new version.

    Same as old:
    Menu > View > Show Invisibles
    or
    command shift i
    Peter

  • How to add a new character set encoding?

    Hello,
    can anybody please explain to me, how to add a new character set encoding to Mac OS Tiger?
    I have two Mac laptops, a new one with Snow Leopard and an older one with Tiger, and on the old one i cannot use or enable anywhere the "Russian (DOS)" character set encoding, which i need to be able to use some old text files.
    On the Snow Leopard, this encoding is present in the list of available encodings of TextWrangler, but not in TIger.
    If i have understood correctly, this is not a problem of TextWrangler, and the same encodings are available systemwide.
    So, the question is: how to add new encodings to Tiger (or to Mac OS in general)?
    Thanks.

    I think possibly that's in the Get Info window of Finder?
    I don't think either that or the input menu have any effect on available encoding choices. Adding languages to system prefs/international/languages can do that, but once you have added Russian there, I don't know of any way to add an additional Russian encoding (there are quite a number of them).

  • How to add non English characters

    I install weblogic 10.3.3.0, SOA Suite 11.1.1.2, and SOA Suite 11.1.1.3 on Windows 2008 (English version). The Location of Regional and language option is set to local place. I also add non-Unicode.
    I can add new holiday rules using non English characters in the BPM workspace. Then, I shutdown my computer as normal. However, after I restart my computer and weblogic domain as well as SOA Suite 11g. The non English characters become ??????
    How to configure Weblogic domain and SOA Suite to show non English characters?

    is both English and Korean letters are in the same column without any space gab or any separator, ? Pl re check

  • Error converting data type varchar to numeric - maybe non printable character?

    Hello all. I'm having some trouble converting a column in my table from varchar(50) to decimal(20,4). I've also tried to convert it to int and had no luck. In trying to find the records with non numeric data, I ran this query...
    SELECT *
    FROM [table]
    WHERE [column] not like '%[^0-9]%'
    My result set was 32 rows where the field in question had zeros. This doesn't make sense to me. If it was a real zero, it would have been excluded from the query.
    So, I flipped it around and ran the following query, and got the same results.
    SELECT *
    FROM [table]
    WHERE [column] = '0'
    If it's really a string 0, what would keep it from converting to a numeric type? I'm wondering if there are non printable characters in there because this table was populated via SSIS package using a flat file.
    Thanks for any help you can provide!
    WeeLass

    I have discovered one of the values that will not convert. It is '-1.2317    ' and I tried RTRIM and those trailing spaces stay there.
    It has a length of 8, and ASCII value of 45, and converting to varbinary gives 0x2D312E3233313709.
    The 45 and 2D both point to a negative sign. This one does indeed have a negative sign, but it's in the front, not trailing. Also, another value that was failing was not negative, but did have the trailing spaces.
    Any ideas on how to figure out what those spaces actually are? Hopefully, if I know that, then I can know how to get rid of them.
    WeeLass
    It may be a hard space
    RTRIM trims only soft spaces
    try this and see if works
    REPLACE(ColumnName,CHAR(160),'')
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to add A Special Character '&' in CGNode.addData()

    Hi,
    I'm using XML class Generator to create a XML file. When I used CGNode.addData and the data contains "&" character, I got the following error:
    oracle.xml.classgen.InvalidContentException: illegal character '&' in CharData
    at oracle.xml.classgen.CGNode.addData(CGNode.java, Compiled code)
    Does anybody know how to insert this special character in XML Class Generator?
    Thank you in advance!
    weiwei

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by weiwei:
    Hi,
    I'm using XML class Generator to create a XML file. When I used CGNode.addData and the data contains "&" character, I got the following error:
    oracle.xml.classgen.InvalidContentException: illegal character '&' in CharData
    at oracle.xml.classgen.CGNode.addData(CGNode.java, Compiled code)
    Does anybody know how to insert this special character in XML Class Generator?
    Thank you in advance!
    weiwei<HR></BLOCKQUOTE>
    I had the same problem here and the only solution I found, was to turn of the validation using the setValidationMode member function of ClassGenerator.
    Regards,
    Reinhard Schuerer

  • How to add a new character in code page

    Hi,
    I need to add a new character to existing code page in the upgraded system.
    The character is latin small s with caron (u0161 ).
    The character ID is 000161.
    What is the byte sequence of the same?
    Thanks and Regards
    Shraddha

    Use tranaction SCP .
    Under segment , take the character sequence and include your new id value . Byte sequence in my opinion will be confirmed from the client .
    Br,
    Vijay.

  • How to add one more character in selection [JS] [CS2]

    Hi All
    I am wondering the way to add one more character in my selection.
    I have a script which adds the xml Element and parent xml Element in selected text so far so good, but further my expectation is to cut this text with tag and paste it into anchored frame but in selection it won’t add the closing tag of parent tag.
    function add_element(mySel){
    var the_add_tag = the_document.xmlElements.item(0).xmlElements.add ("story", mySel);
    var add_space = mySel.insertionPoints[0].contents = " "
    var new_selec = app.select(mySel.characters[0], SelectionOptions.addTo);
    var my_new_sel = app.selection[0];
    var add_parent_tag = the_document.xmlElements.item(0).xmlElements.add ("sidenote", my_new_sel);
    app.select(mySel.characters[0], SelectionOptions.replaceWith);
    app.select(mySel.characters[1], SelectionOptions.addTo);
    app.selection[0].remove();
           app.select(my_new_sel.characters[0], SelectionOptions.replaceWith);
           app.select(my_new_sel.characters[-1], SelectionOptions.addTo);
    Could anyone suggest me the way to achieve it as I am bit primitive in scripting?
    Many Thanks
    Mac

    Hi Mac,
    Here is working code for CS4. Hope it will work on CS2 too.
    function add_element(mySel){
    var the_add_tag = the_document.xmlElements.item(0).xmlElements.add ("story", mySel);
    var new_selec = app.select(mySel.characters[0], SelectionOptions.addTo);
    var my_new_sel = app.selection[0];
    var add_parent_tag = the_document.xmlElements.item(0).xmlElements.add ("sidenote", my_new_sel);
    app.select(my_new_sel.characters[0], SelectionOptions.ADD_TO);
    Regards,
    Shonky

  • How to add the new character in FDI1FDI2 Define/Change Reports?

    Hi,
    There are some fixed charcters defined in the T. Codes FDI1FDI2 Define/Change Reports, can we add the characters here based on which we can get teh desired output. If yes, hen please tell me how to add the characters?
    Thanks in advance...
    Regards
    Nitin

    thanks

  • How To Add Glyph to Character Style?

    Specifically, i want to add the "math x" as a Character Style. The font is Adobe Janson Pro, and the "glyph" (what we used to call a "character") is present. I could add by hand, but i have a lot of them. In the menus that define the character(s) you want to add, i can't find an option that will add a *specific* character-- in this case the math x. Or an accented character, for that matter (ü?)
    Thanks very much.

    Okay, I see. I tried one more thing -- since the Symbol character for the math x font is option-y (which is the "yen" symbol in most fonts) I tried having the Nested GREP apply a character style including the Symbol font to all option-Y characters -- but Indesign is too clever for that, and shows an empty box (since there's no Yen symbol in the Symbol font).
    I give up. Keep the "Glyphs" palette handy, and once you've entered one math x symbol, it will be on the "recently used glyphs" row, and you can enter them by double-clicking. Or, you can search for space-x-space and replace with space-math x-space where needed.
    Rodney

  • How to add non-DVD files to a DVD?

    Hi all,
    I desperately need your help! I've created a DVD using Studio Pro, and I've burned the VIDEO_TS and AUDIO_TS on a DVD
    In addition however, I've added a folder named POWERPOINT, which contains various powerpoint presentations. I did this to allow PC-users to view some powerpoint presentations as well. On a DVD-player, obviously, those wouldn't be seen.
    Now this system seemed to work, however not exactly as I wanted: on some dvd players the DVD starts at some random point in the menu; not at the start. Furthermore, the reproduction company encountered an Error:
    Title Set Files not in correct physical order /
    ISO and DVD file locations disagree
    My question: is this error related to the fact that I've added powerpoint files to the DVD? and if so: is there another way to add non-dvd content to the dvd?
    Thanks a lot for your help!
    Siebe

    Select the DVD icon, (in the graphical or Ouline list) and in the inspector, look at the bottom of the inspector. You will see DVD-ROM content. Make sure you have put all of the content you wish to include in one folder, organized the way you want inside that folder and then using the DVD ROM content option select that folder.

  • How to add image as radio button label instead of text

    In a pure AS3 project, is there a way to add use an image placed in the library/ Flex/AIR SDK compiler path instead of text as a radio button label?
    I've tried substituting character may unicode like:
    rb1.label = String.fromCharCode("0x2592");
    But how this displays is dependent on the device, font character availability. Displays unpredictably.
    Would prefer anyway to use an image that I can create in AI.
    Any help appreciated.

    OK. I tried this, and it works.
    (Hopefully, the image will display in the same location, next to the radio button, on different devices.)
    Thank you.

  • How to represent non-printable characters in XSD?

    I'm trying to represent some Ascii characters like 0D, 0A, 01, 02 and 03 in Hex in one XSD produced by the Native Format Builder but so far I keep getting errors by the Builder's test tool.
    Any idea how to do this?
    Thanks,
    MV

    Hi Anuj,
    Thanks for your reply. I still have a couple of questions though:
    - Is this then the attribute I should change?: nxsd:encoding="ASCII"
    - If I do this will I still end up with an ASCII-compliant file?
    - How do I represent for example Hex 01 in XML: something like this '' (&, #, x and 01)?. Is this even a valid XML character?
    Thanks,
    MV
    Edited by: mvillada on Sep 21, 2010 6:51 AM
    Edited by: mvillada on Sep 21, 2010 6:52 AM

  • CS5 AI. How to add accented text character in windows

    I am trying to get the accented (acute/forward) characters for a, e, i, o, u. (and their capital versions) in illustrator CS5 (Windows 7). I do not want to use the Glyphs - impractical. Neither do I want to use the windows character box or Alt xxxx codes.
    Accented characters are part of normal text - for all but English speakers
    All my other programs (MS OFfice, CAD etc) allow me to use AltGr key + letter (AltGr = right alt = Ctrl+Alt). This is also the case for Photoshop CS5 but not Illustrator.
    In windows control panel I have changed languages (e.g. English, Spanish) and keyboards (e.g. US-international). No difference. As soon as I press AltGr key, I move into Group Selection mode. I have deleted all Illustrator shortcuts that include Ctrl + Alt - still no use.
    I have tried previous suggestions in this and similar forums
    Is there any simple way to resolve this. I have put up with this since CS1 but I thought it was fixed. Now it seems not - AI is to remain English speaking only (?)

    My normal setup is English UK language with English UK keyboard.
    I am not sure I understand your comment "Accents on a tertiary modifier such as AltGr is rather unusual..." and I am not clear about primary keys and secondary modifiers but from my experience...
    AltGr (or Ctrl + Alt) + vowel will give accented (forward) vowel in any package that I use - for example Microsoft Word, Excel, OneNote, Firefox, Paint Shop Pro, TurboCad etc - and many more. It is a standard in windows and has been for years. Even Photoshop follows it. But not Illustrator.
    In trying to get it to work in Illustrator I have tried every reasonable combination of keyboards (e.g. US-international, Spanish) and  languages (e.g. French, Spanish etc) as well as English
    I'd happily work with any two-key / three - key shortcut I could set up in Illustrator.

Maybe you are looking for

  • I just upgraded an old Imac from Leopard to Snow Leopard, now it won't work

    I just upgraded my 2003 imac from leopard to snow leopard and after restart all I get is a blue screen.  Nothing happens.  How can I get back to the old leopard.  I use this computer for research just because of the 23'' screen.  Help

  • Two Apple IDs: Need to get rid of one

    I ended up with two Apple IDs because of a typo I didn't notice for a few weeks. The ID I have been using has an error in it (email address is missing a letter) In my haste to fix things, I ended up creating a 2nd account/ID, and while the "email" is

  • I lost all my songs when syncing

    When I downloaded the new version I lost all my contacts and all my apps and all my downloaded songs.  I've managed to get everthing else back except for the music.  I had approximately 150 songs.  Any help would be greatly apreciated. Thanks,

  • How is this possible?

    I messed up my internal Apple/Hitachi HD in my MacBookPro, had to erase it and then do a restore from Time Capsule, successfully. Somehow (using Disk Utilities from SL Installation Disk with Time Capsule option) in this process my restore went into a

  • MeetingPlace Express 2.1.1.2 Email Notifications stopped working

    Hello I am encountering the following issue with Email Notification with MPE 2.1.1.2: I schedule a meeting and invite someone from outside of the company by email. The meeting creation works but no email is sent to the guess. When I go to the Email N