Can't highlight square brackets

I've recently bought an iPad air (not air 2). Before that I used an iPad 2 running on iOS 6. I have a document in Dropbox I often copied some specific code from including square brackets. Now, on my new iPad running the newest iOS 8, I'm unable to copy or highlight the starting square brackets. No matter how close I zoom in I can't highlight the very first bracket and any other starting brackets '[' disappear when I paste the text. The closing brackets are still there. Does anyone know why this is happening at what I can do to make it stop? It worked just fine on my old iPad and I would be very disappointed if my new iPad can't do something that simple.
Thanks, Zebrakatten

Just had the same problem with a german keyboard,
y was z and z was y.
Try to search 'Editing a Locale' in the IDE Help, you have to specify the language for the project, you're currently working on.
It's quite good explained and worked after a relaunch of SJSE (nice job, SUN)

Similar Messages

  • Can't type square [brackets] in Firefox

    I know they are on alt-5 and alt-6.
    But I can't type them when using firefox.
    Any way around that ?

    I have the same problem.
    Doesn't have anything to do with firefox version.
    Firefox has assigned tab switching to ALT-number and COMMAND-number, **** knows why.
    Tried the keyconfig addon to change hotkeys ... ALT-number ain't even listed and deleting COMMAND-number hotkeys doesn't do anything either.
    Solutions, anyone ?
    I mean, Safari is nice but the available addons for safari are simply crap. And the lack of a sensible sidebar is vexing.
    So firefox is simply the better browser available ... if I could use those bloody brackets.

  • Can't type square brackets in UML editor

    Hi,
    I'm using portuguese keyboard and settings and can't type "[" in the UML editor. Anyone else had this problem?
    Thanks

    Just had the same problem with a german keyboard,
    y was z and z was y.
    Try to search 'Editing a Locale' in the IDE Help, you have to specify the language for the project, you're currently working on.
    It's quite good explained and worked after a relaunch of SJSE (nice job, SUN)

  • How can I read "Keys" from a Config File that have square brackets in them?

    I'm using the "Read Key (String).vi" from the config.llb and I'm having a problem because the key names in my file have square brackets in them. I'm creating an VI to read certain pieces of the TestStand �StationGlobals.ini� file and array elements appear as %[0] = "blah blah blah". It looks like they're not getting recognized at all. Is there a way to handle this?

    I was just looking at the code inside the configuration VIs and the way they work under V6 is that the Open VI actually reads the contents of the configuration file, parses it (in nice-platform independent G) and stores it in a fancy LV2-style global called the "Config Data Registry.vi". The routine that does the parsing is called "String to Config Data.vi". My gut reaction is that this code is going to be the same in your version because between sometime prior to V6 of LV, NI changed the location of a couple terminals on the low-level Match String function and it looks like when this code was originally written the terminals were in the old configuration.
    In any case, if your square-bracket containing strings are getting lost, this is probib
    ly where it's happening at. The other place to check is in the read VI itself. The V6 VI for reading the configuration registry is called "Config Data Get Key Value.vi". It's output is then further parsed by a function called "Parse Store String.vi" if the "read raw string?" input is set to False (the default position).
    Given that all the code for these functions are written in LV, you should be able to fix your VIs to read the strings you have in the ini file now. Which IMHO is actually the way they should work.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How can I highlight text in a document scanned in pdf format?

    How can I highlight text in a document scanned in a pdf format?

    If it wasn't OCRed in Acrobat then you can only use the non-text commenting tools, like the Square or Polygon. Press Ctrl+E to open the Properties bad and you could make it look like a text highlight annotation.

  • How can i design square signal which having a positive and negative values equal to each other and separated from each other by controlled time or distance

    How can i design square signal which having a positive and negative values equal to each other and separated from each other by controlled time or distance, As it is shown in the figure below. and enter this signal in a daq.
    Solved!
    Go to Solution.

    By the time you spend for the nice diadram you might have done the vi
    Your DAQ like to have a waveform (array of values and dt ak 1/samplerate)
    If you set the samplerate you know the array length , create a array of zeros, and set the values of both amplitudes ... 
    Since I don't want to wire others homework here are some pictures
    And there are some drawbacks is room for improvement in my solution, just think of rounding errors ... and what might happen if the arrays get bigger ....
    Spoiler (Highlight to read)
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

  • Square brackets around name of pdf preset

    Hey folks, I have custom pdf presets that are used to output PDFs from Adobe InDesign CS3 on the Windows OS. These presets are in the usual default folder: C:\Documents and Settings\All Users\Application Data\Adobe\Adobe PDF\Settings\ and are included with a bunch of the default settings. At any rate, when I open InDesign and choose Adobe PDF Presets from the File menu, all of the settings are visible. However, they all have square brackets around the name, [myCustomIDPDFPreset]. I expect this result from the default job options that ship with Adobe but not in my custom presets. This is an issue because our output scripts use the specific name of the preset to output PDF content so the inclusion of the square brackets causes it to fail. Any thoughts on how the custom presets can appear in the list without square brackets. This was how it worked in CS2. Thks, Wil

    Here is a screen shot of what's in my ID CS4 PDF Export options. All have brackets.
    Here's what a search for "joboptions" returns. I'm on Intel iMac running 10.5.8. CS4.

  • Matching substrings between square brackets using regular expressions

    Hello,
    I am new at Java and have a problem with regular expressions. Let me describe the issue in 3 steps:
    1.- I have an english sentence. Some words of the sentence stand between square brackets, for example "I [eat] and [sleep]"
    2- I would like to match strings that are in square brackets using regular expressions (java.util.regex.*;) and here is the code I have written for the task
    +Pattern findStringinSquareBrackets = Pattern.compile("\\[.*\\]");+
    +     Matcher matcherOfWordInSquareBrackets = findStringinSquareBrackets.matcher("I [eat] and [sleep]");+
    +//Iteration in the string+
    +          while ( matcherOfWordInSquareBrackets.find() )+
    +{+
    +          System.out.println("Patter found! :"+ outputField.getText().substring(matcherOfWordInSquareBrackets.start(), matcherOfWordInSquareBrackets.end())+"");     +
    +          }+
    3- the result I have after running the code described in 2 is the following: *Patter found!: [eat] and [sleep]*
    That is to say that not only words between square brackets are found but also the substring "and". And this is not what I want.
    What I would like to have as a result is:
    *Patter found!: [eat]*
    *Patter found!: [sleep]*
    That is to say I want to match only the words between the square brackets and nothing else.
    Does somebody know how to do this? Any help would be great.
    Best regards,
    Abou

    You can find the words by looping through the sentence and then return the substring within the indexes.
    int start=0;
    int end=0;
    for(int i=0; i<string.length(); i++)
       if(string.substring(i,i+1).equals("[");
      start=i;
    if(start!=0)
    if(string.substring(i,i+1).equlas("]");
    end=i;
    return string.substring(start,end+1);
    }something like that. This code will only find the firt word however. I do not know much about regex so I cannot help anymore.
    Edited by: elasolova on Jun 16, 2009 6:45 AM
    Edited by: elasolova on Jun 16, 2009 6:46 AM

  • Smartform square brackets or check box

    Hi all,
             Please help me in the issue . I output of the smartform should have checkboxes or square brackets . I tried using standard symbols but i didnt acheive it . can anyone please sugguest me how can i acheive .
    thanks in advance,

    Hi,
    If the check bax you are expecting is for interactive purpose, then you need to go for adobe forms. If it is just for showing in the layout then you can try below 2 ways.
    1. Upload an image of the check box to your SAP system from SE78. Print this graphic as you normally print the LOGO. ( you can create a node of type graphic)
    2. Create a text element and print a single dot. Set the output options of the text element as below.
    Select check box "Lines with" under the frames section. Give the appropriate spacing and width say 1 PT each. Now it shows a small box with the frames. If it is in main window, then you may need to create a template for controlling the width and hight of the element.
    Thanks,
    Vinod.

  • What are the square brackets around paragraphs and heads?

    I am hoping that someon can hlep me with this topic. I can not seems to find anything on this matter.
    I have recieved an InDesign file for a book that we are updating the design and content for. All the text in this file has Square brackets, at the begining and end, of each paragraph or head. I have never seen this before, coming from a Quark background.
    The characters are visible in "normal mode", but they disapear when you view in "preview" mode.
    Can anyone please tell me what the Square brackets around text means?

    If you are using OSX this AppleScript should remove all of the XML tags, but test it carefully on a copy of the document:
    tell application "Adobe InDesign CS3"
    try
    untag (every XML element of document 1)
    end try
    end tell
    If you are not on a Mac I'm sure you could get the equivalent JavaScript at the scripting forum.

  • Where's the square bracket key?

    Hey guys. I'm using a Dutch azerty keyboard and I can't find the square bracket keys. I need 'em badly for programming. How can I type them?

    I don't see a Dutch azerty keyboard layout - the Dutch layout is qwerty and the square brackets are to the right of the p key.
    However, for the Belgian layout, which is azerty, [ is Shift-Option-5 and ] is Shift-Option-- (Shift-Option-Hyphen).
    You can hunt for keys yourself (do you remember the Classic utility KeyCaps?)- go to System Preferences > International > Input Menu tab and check the box for Keyboard Viewer. A flag should appear in your menu bar (if not, scroll down to your language and check the box there). Click on the flag in the menu bar and select Show Keyboard Viewer. A mini keyboard will appear, and you can hold down Shift, Option, Ctrl, or any combinations of them and the keys will show you what you get.
    Hope this solves your problem...

  • Round and square brackets in regexp

    Hello,
    Can someone please explain to me what is the difference between:
    SELECT REGEXP_INSTR('aoeeeeo','(i|e)o') position FROM dual;
    and
    SELECT REGEXP_INSTR('aoeeeeo','[ie]o') position FROM dual;
    I mean, what is the main difference between round brackets with the alternation operator and square brackets in regular expressions?
    Thank you very much,

    It will perhaps be clearer if you look at it with more than just single characters...
    SQL> select regexp_replace('this is fred and his test string', '(is|and)','XXX') from dual;
    REGEXP_REPLACE('THISISFREDANDHISTES
    thXXX XXX fred XXX hXXX test string
    SQL> select regexp_replace('this is fred and his test string', '[isand]','XXX') from dual;
    REGEXP_REPLACE('THISISFREDANDHISTESTSTRING','[ISAND]','XXX')
    thXXXXXX XXXXXX freXXX XXXXXXXXX hXXXXXX teXXXt XXXtrXXXXXXg
    SQL>The round brackets allow you to specify whole strings whereas the square brackets allow you to specify sets of individual characters.
    Therefore in my first example it looks for IS or AND and replaces those.
    In the second example it looks for any occurence of the characters I,S,A,N,D and replaces those.

  • How remove the square brackets in window title

    hi all
    my window and my forms_mdi_window doesnot have any title
    is there any way to remove the square brackets that appear in title of window?
    thanks and regard
    shoja.

    Now i get it and it happens the same,
    but if you remove 'SET_window_property('window1',title,'');
    The window will not maximize and the title will not be seen, in your case the square brackets will not be seen.
    and if you maximize the window then at the oracle forms runtime window the combination of both the titles that is the title of the window as well as the title of the oracle forms runtime window will be seen.
    AS there is no title in your window and runtime window the brackets will be shown,
    I don think it can be removed(not so confident about that, sorry).
    dipin

  • SQL Server 2012 sqlcmd: Unexplained behaviour returning output containing square brackets []

    From a SQL Server 2012 installation, executing either:
    sqlcmd /E -S <ServerName> -Q "PRINT '[A], [B], [C]'" or
    sqlcmd /E -S <ServerName> -Q "PRINT CHAR(91) + 'A], [B], [C]'"
    gives:-
    , [B], [C]
    wheras for 2005, 2008 or 2008R2, gives the expected result of:-
    [A], [B], [C]
    I haven't been able to find an explanation or way to force the correct result from 2012 sqlcmd.  It appears to me that 2012 is interpreting a lefthand square bracket as the first character on a line as some sort of token delimiter
    or similar.
    Can anyone shed some light on this or is it an issue for Connect?  This is just an example of the problem, I am not actually trying to print [A], [B], [C]! :) -  we are experiencing data loss/corruption on outputs from stored procedures where
    the leftmost character is [.
    Note that 2012 sqlcmd expects a closing ] on the line, otherwise the output gets returned like this for:-
    sqlcmd /E -S <ServerName> -Q "PRINT '[A, [B], [C'"
    [Microsoft][SQL Server Native Client 11.0][SQL Server][A, [B], [C
    Thanks

    It must be tokenizing the [A] for some reason.
    So, its not a [A] which is a problem its "[" as the first character of the output.
    I agree that it's an issue with SQLCMD in SQL 2012. If you capture profiler, command is passed correctly to SQL engine.  It seems like when output stream comes out, SQLCMD looks for "[" as first character and chops off content till next "]"
    If there is not matching closing "]" it shows the text with additional message.
    Workaround - Just add additional space prior to square bracket and it works fine.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Cisco/IronPort Encryption using square brackets

    Came across an interesting problem, apparently our mainframe cannot 'easily' produce a square bracket charachter.  Something to do with EBCDIC versus ASCII and that the characters [ or ] are not part of the EBCDIC language.
    I did find where possibly a hex code of x'AD' and x'BD' may work for [ and ] respectifully.  But our mainframe programmers have resisted this, meaning that I need to create a new filter for e-mails generated by our mainframe, which I could do.. 
    Just wondering if anyone else has run into this issue and if the default should be changed to something more legacy, I mean friendly to EBCDIC? 

    Hi Jason,
    just a personal opinion about this, I think the square brackets for ecryption tagging in Subjects were used because we already tag messages that have been flagged virus or spam positive by prepending a warning in square brackets. So it seems logical to use this syntax in encryption as well.
    As for your case, maybe the mainframe programmers can add an x-header instead a modified subject as well? That way nothing of the visible parts of the message need to be changed, a filter still is nesseary of course.
    Regards,
    Andreas

Maybe you are looking for

  • How do you connect to HP 4630 printer WiFi

    I had just installed Maverick on my Macbook and had to buy a new printer, HP 4630 Officejet.  The MAC does NOT recognize the printer by Wi-FI although it will print if I have it attached by cable.  It is listed as the printer in system preferences.

  • To buy ...or not to buy? That is the Question.

    So i've been dying to get an iphone and was planning on treating myself to one for Christmas this year. But just yesterday, my husband's company offered him a promotion if he'll move to London for about 6 months next year, that we just couldn't pass

  • Trouble ejecting the ipod from itunes

    Just got my ipod 80gb and i connect, update, sync and all that jazz, but when the time comes to eject my ipod it says that files on the ipod are being used by another program; close all programs and try again, same thing, but sometimes it ejects and

  • Uploader in my site

    Uploader in my site so that visitors can easily upload their pictures etc.this have been posted so many times but i cant find one with a nice solution/script. i have found php form generator demo to easily create an email form with upload capability

  • What is the file name that stores MAX channel information?

    I have recently lost all my cannel information within NI-MAX. In order to prevent this in the future, Can anyone tell the name of the file that stores all the channel information created using NI-MAX? Dan