No capital A when first letter of word.

I Cant get the shift A to give me a letter when A is the first letter of a sentence. I have to use the cap lock key, and this is only on one of my accounts, any ideas?

Hi, as it is only on 1 of your accounts I would:-
(1) Repair Permissions (2) Go the SMC reset Route
I Googled your Issue & some people said that they had not installed the latest updates...L

Similar Messages

  • Regex: searches for first letter in word return all letters

    I want to init-cap the words in a sentence, and I use the pattern "\\b[a-z]" to search for the first letter of each word. However, it actually matches all the letters, so that the entire sentence is capitalized. If I reverse the pattern to look for the last letter of each word, "[a-z]\\b", then only the last letter is capitalized as expected.
    Is this a bug or a misunderstanding of regular expressions on my part?
    Here's my code:
    String s = "this is a test";
    Pattern p = Pattern.compile("\\b[a-z]");
    Matcher m = p.matcher(s);
    StringBuffer sb = new StringBuffer();
    boolean result = m.find();
    while(result) {
    m.appendReplacement(sb, m.group().toUpperCase());
    result = m.find();
    m.appendTail(sb);
    System.out.println(sb.toString());

    It capitalizes only the first letter of words for me. Try getting the latest version of the JDK.

  • Converting first letter of word to uppercase

    Hi,
    Is there any function module to convert the first letter of the word to uppercase ?
    --bala

    Hi
    This will convert only the first word. If i have to do for all the words, like.,
    twinkle twinkle little star
    to
    Twinkle Twinkle Little Star.
    --bala

  • Safari won't let me use first letter in word in dropdown list

    When I'm in a page with a dropdown list, Safari won't letter me type the first letter key to narrow down my selection. If, for example, I'd like to find Denmark, I can normally click on the D key. I know Safari for Mac allows that.

    I can't do it either - possibly an as-of-yet unimplimented feature in this beta release.

  • Taking just first letter of words

    How can i take just letter of words?
    For example:
    words: marty fly result : MF

    A slightly different solution can take advantage of the initcap function.
    example
    with testdata as (select 'marty fly result' txt from dual
            union all select 'How can i take just letter of words?' from dual
    select txt,
           translate(initcap(txt),'$'||lower(txt),'$') res
    from testdata;
    TXT                         RESULT
    marty fly result               MFR
    How can i take just letter of words?     HCITJLOWJust noticed that Frank already posted a very similiar solution.
    Edited by: Sven W. on Jan 7, 2011 2:01 PM

  • Addresses slow to appear when first letter or two are entered

    When writing an email I'll enter the first one or two letters of the addressee's name and the computer cycles for several seconds looking for the name choices. My old macbook pro and my wifes computer don't do this. Why is it so slow identifying the name choices?

    I had this problem with my current mouse/keyboard setup. It did not happed all the time but when it did it was almost like the mouse was not connected to the computer.
    I never was able to figure out what the cause was but it no longer happens. It may have been system updates. Try the combo updater and see if it helps.
    By the way, repair the permissions instead of verifying them.

  • Making the first letter of every word a capital

    hello CF oracles
    could you guys please advise me the best way to make the
    first letter in every word of a string a capital letter. (and make
    all the other letters lower case).
    eg. convert "the quick brown fox" into "The Quick Brown Fox"
    or convert "THE QUICK BROWN FOX" into "The Quick Brown Fox"
    I am taking form data and inserting it into my table, so i
    want to get it right as the data is inserted.
    i found a "UDF" on CFLIb.org that proports to do this, but i
    don't know how to set up a UDF, are there other ways or is this
    considered the best approach.
    http://www.cflib.org/udf.cfm?id=9&enable=1
    thanks for any help you can give me

    found it, here's the top info, Titlecase is what you want for
    this.:
    changecase.cfm
    Rev 1.01
    cf_changecase is a simple custom tag to format case in given
    string.
    (c) 2001, Rizal Firmansyah, [email protected]
    Input var:
    * case (mandatory)
    possible inputs are
    - sentencecase: Sentence case (default)
    - titlecase: Title Case
    - lowercase: lowercase
    - uppercase: UPPER CASE
    "happysailingdude" <[email protected]> wrote
    in message
    news:e46tjv$e30$[email protected]..
    > hi Dan thanks very much. I have made an executive
    decision to do a bit of
    > a
    > hack for now as my site is only small so if a user
    enters something in the
    > wrong way i can quickly manually update it myself.
    >
    > so now i have this which works 9 times out of ten if the
    user enters a one
    > word name eg "bill" or "fred" of "jane" then it works
    just fine
    >
    > the only time it doesnt work is if the user's name is
    more than 1 word (or
    > is
    > hyphenated) eg "mary anne" or "anne-marie" hence the
    first cfif line - in
    > these
    > cases i can manually update
    >
    > i put this here in case it is of use to anyone else
    >
    > cheers
    >
    > <cfif not (FORM.firstName contains " " or
    FORM.firstname contains "-")>
    > '#Left( UCase( "#FORM.firstName#" ), 1 )##Right( LCase(
    > "#FORM.firstName#" ), Len("#FORM.firstName#" ) - 1 )#'
    > <cfelse>
    > '#FORM.firstName#'
    > </cfif>
    >

  • First letter Capital of every word in a expression

    Hi Experts,
    I am trying to do a check using the match_regex to check in a expression if the first letter of every word are in capital.
    If it find all staring letter in capital for every word in an expression then only it should return 1 else 0
    Can anybody guide me on this.
    Example : I Will Go Home - should return 1
                      I will go home   - should return 0

    $num = 1;
    while(word($inputstr,$num) != NULL)
    begin
    if(word($inputstr,$num) != init_cap(word($inputstr,$num)))
    begin
    return 0;
    end
    $num = $num + 1;
    end
    return 1;

  • I don't want the first letter of every line to be capitalized

    When I try to put in user id's and passwords on web sites, I don't always want the first letter to be capitalized.  How do you make the Ipad stop doing this?

    Settings -> General -> Keyboard
    Turn off Auto-Capitalization.
    Regards.

  • How to Capitalize the First Letter in Every Word in Mysql

    Hi,
    I have been trying to tidy up a massive database where visitors have been sloppy when entering text. The main thing I want to do is to Capitalize The First Letter In Every Word In Mysql.
    I have found the code below in PHP but it keeps finding an error on the WHILE line:
    <?php ini_set('display_errors', '1'); ?>
    <?php require_once('Connections/maison_connection.php'); ?>
    <?php
    $result = mysql_query ("SELECT column, id FROM table");
    while ($row = mysql_fetch_array($result)) {
    $id = $row["id"];
    $column2 = ucwords($row["column"]);
    $query2 = "UPDATE table SET column = '$column2′ WHERE id = '$id'";
    mysql_query($query2);
    ?>
    My table is called MailingList and the Column is called Name, so I have altered the script to this: but it still shows the same WHILE error:
    <?php ini_set('display_errors', '1'); ?>
    <?php require_once('Connections/maison_connection.php'); ?>
    <?php
    $result = mysql_query ("SELECT Name, id FROM MailingList");
    while ($row = mysql_fetch_array($result)) {
    $id = $row["id"];
    $Name2 = ucwords($row["Name"]);
    $query2 = "UPDATE MailingList SET Name = '$Name2′ WHERE id = '$id'";
    mysql_query($query2);
    ?>
    Any ideas??

    I got it to work this way in SQL: I am SURE there is an abbreviated way to do it, but at least it works
    UPDATE MailingList SET Name = replace(Name," a"," A");
    UPDATE MailingList SET Name = replace(Name," b"," B");
    UPDATE MailingList SET Name = replace(Name," c"," C");
    UPDATE MailingList SET Name = replace(Name," d"," D");
    UPDATE MailingList SET Name = replace(Name," e"," E");
    UPDATE MailingList SET Name = replace(Name," f"," F");
    UPDATE MailingList SET Name = replace(Name," g"," G");
    UPDATE MailingList SET Name = replace(Name," h"," H");
    UPDATE MailingList SET Name = replace(Name," i"," I");
    UPDATE MailingList SET Name = replace(Name," j"," J");
    UPDATE MailingList SET Name = replace(Name," k"," K");
    UPDATE MailingList SET Name = replace(Name," l"," L");
    UPDATE MailingList SET Name = replace(Name," m"," M");
    UPDATE MailingList SET Name = replace(Name," n"," N");
    UPDATE MailingList SET Name = replace(Name," o"," O");
    UPDATE MailingList SET Name = replace(Name," p"," P");
    UPDATE MailingList SET Name = replace(Name," q"," Q");
    UPDATE MailingList SET Name = replace(Name," r"," R");
    UPDATE MailingList SET Name = replace(Name," s"," S");
    UPDATE MailingList SET Name = replace(Name," t"," T");
    UPDATE MailingList SET Name = replace(Name," u"," U");
    UPDATE MailingList SET Name = replace(Name," v"," V");
    UPDATE MailingList SET Name = replace(Name," w"," W");
    UPDATE MailingList SET Name = replace(Name," x"," X");
    UPDATE MailingList SET Name = replace(Name," y"," Y");
    UPDATE MailingList SET Name = replace(Name," z"," Z");

  • Issue with format: date dd-MMM-yyyy - First letter lower instead of capital

    Hi colleagues,
    I am facing a problem using: <?format-date:FIELD_NAME;’dd-MMM-yyyy’;'UTC'?> on my RTF template.
    When the report run on English it retrieves: Apr, Jun, ...
    but in French it retrieves: apr, jun.
    The client wants the first letter of the month in capital letter I thought that MMM is the format to manage it...
    I am using XML Publisher with PeopleSoft.
    The template is in French and using bursting I create the report in different language depending on some parameters.
    When I preview the template everything is ok.
    Does anyone knows where is the Abbreviate Name of the Month comes from?
    Thanks in advance,
    Juan Diego

    Hi Juan
    It ought to be returning 'Arv' not 'apr' in French right?
    It might be an issue with the i18n library that is being shipped. I would suggest logging a service request with support for some help.
    Regards
    tim

  • Apple wireless keyboard misses first letter in some words

    When I am typing, particularly in Word 2011, with my Apple Wireless Keyboard, it frequently does not type the first letter of a word.  I have searched and can find no resolution to this problem.  I have messed with Accessibility but that is all turned off.  The only other bluetooth device is my mouse.

    Hi,
    Thanks for this. It isn't the computer though, as it will happen very quickly. For example I can type in a web address, then look up to read the web page for 20 seconds or so, then if I type again it will miss the first key stroke.
    I am starting to get used to typing the first letter twice!
    I can see that it is a widely reported issue with Apple Macs, but I can't find a fix for Windows. I am keen not to have to buy a new keyboard!
    T23

  • Word in proper case ( First letter Capiral and remaining small case )

    Hi all
    I wanted to make a sentence as a proper case one. like All first letter of the word should be in capital and remaining in small Letter..
    For example..
    I have a sentence in Lower case ..
    'rupees twi thousand only'.
    i wanted to make it as follows..
    Rupees Two Thousand Only...
    Cheers
    Christina

    Here is an alternative approach which uses a regular expression and runs over 10 times faster than calling STRING_UPPER_LOWER_CASE:
    form proper_case changing p_name.
      data:
        li_ofs type i.
      translate p_name to lower case.
      while sy-subrc = 0.
        translate p_name+li_ofs(1) to upper case.
        find regex '\b[a-z]' in p_name match offset li_ofs.
      endwhile.
    endform.  

  • Right or Wrong? help: user account short name has Capital First Letter

    Hello
    I have the same issue as a post in the Mountain Lion discussion group.  It doesn't seem to be getting an answer.  So I thought I would post it here, being that I do have Snow Leopard.
    The Mountain Lion post is here: https://discussions.apple.com/message/21665861#21665861
    Here is MY question::
    Can anyone answer this?  I have this same thing.  I've had this Mac since 2010, too, I think, at least two years.  I don't remember being asked to use lowercase, nor actually typing in the Capital letter.  I stumbled upon the realization when I was using my Macbook and my user name whille different does use all lowercase.  The Macbook is newer.
    I've been running this Mac with the first letter Capital for the short name with no problems that I know of.  I do have Time Machine backups that I don't really want to lose access to.
    What are the benefits and pitfalls of using the method etresoft explains to change it to all lowercase??  Should I do it just to do it and be in line with Apple's guidelines or should I leave well enough alone??  Which way will cause me MORE problems?  Running with the Capital letter or going through the process of changing it to lowercase??
    What kind of problems will I run into if I change it or don't change it???
    Where "oldshortname" is your old user name and "newshortname" is the user name you want to change it to. Keep in mind that both oldshortname and newshortname must be all lowercase, with no spaces, and only contain letters or numbers.
    And, Padgreen has an excellent point -- how do we do this change process if our Old Shortname is Shortname??  How can we type "shortname" for the "oldshortname" if our shortname is not all lowercase??
    etresoft -- are you around??
    Or someone else?  Thanks!!
    (the only thing I can even think of as a problem is when I copy files/folders over to my Macbook - it sometimes makes "nobody" the owner of the file/folder and I find out when I try to edit or move the file. I can usually just change the owner and everything is fine.  I don't know if this is related or not.)

    http://support.apple.com/kb/ht1428 states:
    Select the Home folder with the short name you want to change, and rename it just like you would rename any folder. Keep in mind that the shortname must be all lowercase, with no spaces, and only contain letters.

  • Need to not have first letter capitalized in text boxes

    How do I get the first letter in a text box to NOT capitalize? Boxes in some web forms for email addresses are simply text boxes, so when I start to enter my email address the fist letter is capitalized and I can't seem to figure out how to avoid this (except by double typing the first letter and then going back and deleting the first letter). I'm not sure if this always matters, but my work email is case sensitive - if the first letter is capitalized, the message will get bounced.

    Tap the shift key and it will become lower case

Maybe you are looking for

  • Parsing Through the Multi Selection Values in a PL/SQL Procedure

    Greetings, This should be an easy one for one of you PL/SQL experts. I'm not, so I am unsure how to code this up. I have a Multi Selection page item and am passing the value of it to a PL/SQL routine as a parameter. I am able to use the value if I on

  • CSS not working correctly in Safari only!

    I built a website <http://globalpeace.jp> for a Japanese friend quite some time ago (2007) and it worked fine at the time but now (I am not sure from when as I had not looked at the site for a long time) the display of a series of floating boxes in t

  • Grants issue !!

    Hi, O/S : HP Unix DB : 11.2.0.3 Server Source_A : Let's say i have user with the name 'Rob' and this user has been assigned a role 'MY_SRC_ROLE' . I developed a table under rob schema and granted access to this table via role GRANT DELETE, INSERT, SE

  • Opening projects in CC 2014.2 created in previous version of premiere cc 2014

    Hello,     I just upgraded premiere cc 2014 to premiere cc 2014.2. When I try to open my project created in the last version of cc 2014 I am instructed to convert the project created in the previous version of premiere so it can be opened in premiere

  • My Earbuds are not working after I accidently pulled  them out of my ears

    So I was playing a game on my laptop and I had sound so I plugged in my earbuds. After a few hours I accidently pulled them out of my ears I put them back in and noticed that I couldn't hear any sound coming from them. I checked iif they were plugged