Question about (split)

Evening, the code below is supose to read a file, split it at every "|" and then print it. But it split it at every char. so instead of words I get chars.
-class FileHandler-
private static String[] names;
public static String[] getNames(){
      return names;
public static void readAuth(String fileName){
       String aLine;
       File file = new File("data/" +  fileName);
       try{
               FileInputStream fis = new FileInputStream(file);
               BufferedReader br = new BufferedReader(new InputStreamReader(fis));
                        while ((aLine = br.readLine()) != null){
                        names = aLine.split("|");
                       br.close();
     }catch(IOException e){
           e.printStackTrace();
}-class Login.-
public void getAuth(){
     for (int i=0; i < FileHandler.getNames().length; i++){
     System.out.println(FileHandler.getNames());
Or have I misunderstood how split is working?
Greetings Magnus

ProjectMoon wrote:
Good enough. The | character has a special meaning in regex. So, if you want to actually split on the character itself, you need to escape it. Thus, you get "\|". However, that's not a valid escape sequence in Java itself. It is valid for >the regex engine though. So, you wind up with an escaped \, thus getting "\\|".Thank you. And just to make it clear. the same would go for the "&" and "!" then I guess.

Similar Messages

  • Question about split group by in IQ16 SP08.

    Dear all,
    I have a customer who encountered performance of "union all view".
    As per our analysis, IQ optimizer does't split the Group By.
    [Query]
    select "EDPS_CSN","count"()
      from "adwown"."vw_adw_dpy111n_01"
      group by "edps_csn"
    As far as I know, There are some restrictions on the situations and queries that benefit from the split GROUP BY.
    But this view meets all restrictions.
    Please refer to the below URL.
    [Impact on query performance of GROUP BY over a UNION ALL]
    - http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc00169.1520/html/iqperf/iqperf35.htm
      So I would like to know the following questions.
      1) How to enforce the split the group by.
      2) Any changes about split group by in IQ16 SP08?
      I failed to attach the query pland becuase it's extension is html.
      Any comments or advice will be greatly apprecaited.
      ** Base Table Rows
        1) ADWOWN.TB_ADW_DPY119N : 23,259
        2) ADWOWN.TB_ADW_DPY111N : 398,017,348
        3) ADWOWN.TB_ADW_DPY117N : 16,160,487
    Thanks
    Gi-Sung Jang

    The big issue is that the GROUP BY is on the view, not on the base tables.  At the time of optimization, we don't know always know the data distribution of the GROUP BY key.  At least we don't know whether or not each table in the UNION ALL has overlapping data for that column.  Consequently, you have to retrieve all data first, sort/order it, then run the group by.
    There are caveats to this, as your link provides.  But what is missing from your post is the logic of the view.  Can you provide that?
    Mark

  • [makepkg] Question about split packages handling in makepkg

    Hello
    One question came to my mind, while I was looking at the vlc PKGBUILD. Does splitting packages have to be done in such a non efficient way? I mean, why do we have to delete for example, a directory, once make install has been issued, only to copy the removed parts by hand in the next function? Wouldn't it be better to just specify something like per-package %files section (like in RPM .spec files)? Is this approach possible in Arch without ditching all the work up to now? If there was any discussion about that, I would love to take part in it. I am also looking forward to listening some critical comments.

    Allan wrote:How is providing a list of files to include more efficient that providing a list not to include?
    If it was only about providing a list of files to include/exclude, it would be ok. However, as far as I know, when Makefile has only one install target and we have to separate some files, we have to install all first, and then remove parts which don't fit into the main package just to copy them back in place in the next package-foo2() function. It's like doing the same work twice. Is that right? If so, it could be quite problematic to package bigger projects. I'm kind of speculating here, because I can't name any of the "big projects", but I'm quite sure there are some out there. I hope I made my point clearly now.

  • Questions about split ..trying to extract 2 levels of OUs from distinguishedname

    Hallo .. I'm still on a voyage of self-discovery to teach myself Powershell. Be kind. 
    I'd like to extract two levels of OU names from a computer object's distinguished name in AD for a report. I'm getting .distinguishedname from get-adcomputer.
    I have this:  
            CN=COMPUTERNAME,OU=OU2,OU=OU1,OU=NOTWANTED,OU=NOTTHISEITHER,DC=FOO,DC=BAR,DC=COM
    ...and I'd like to pull out: 
           OU1
           OU2
    I'd like each assigned to its own variable. Through messing around I've been able to get a little of what I want using split:
           $OU = ($blah.DistinguishedName -split ",*..=")[2,3]
    This gives me both OU1 and OU2, but I can't figure out how to separate *that* into two separate values which I can assign to $OU1 & $OU2. 
    Is split even the right choice, or would a regular expression be the way to go? I confess I don't really understand those yet. 
    Examples would be welcome.
    Thanks much. 
    LW
    Lanwench ** Do not fold, spindle or mutilate. Fill in the box completely and erase any stray marks. Use only a #2 pencil.

    Nyuk. That's what you get when the liberal-arts majors go into tech!
    Following your logic I figured out how to add $OU3 also. Goody.
    Is it permissible to ask one more followup question in here or will I be beaten soundly? I'll risk it...
    So, I can now see that although *most* of our servers have a consistent number of 'parent' OUs, some don't. Meaning, it could be one of the following...
    CN=COMPUTERNAME,OU=OU3,OU=OU2,OU=OU1,OU=NOTWANTED,OU=NOTTHISEITHER,DC=FOO,DC=BAR,DC=COM
    CN=COMPUTERNAME,OU=OU2,OU=OU1,OU=NOTWANTED,OU=NOTTHISEITHER,DC=FOO,DC=BAR,DC=COM
    CN=COMPUTERNAME,OU=OU1,OU=NOTWANTED,OU=NOTTHISEITHER,DC=FOO,DC=BAR,DC=COM
    ...and I want to see *only* the OUs that are under OU=NOTWANTED. Children, I guess. 
    I tried filtering - 
    $container3=[adsi]$container2.Parent | | where-object {$_ -notlike "OU=NOTWANTED" }
    and that didn't work at all. No error, but I'm seeing NOTWANTED as part of my output.
    What is one of the many things I am probably doing wrong? 
    Lanwench ** Do not fold, spindle or mutilate. Use only a #2 pencil. Fill in the box completely and erase any stray marks.

  • Question about splitting string for placeholder in SE91

    Hi all,
    In SE91, I had a message with placeholder & & & &.
    In my program, I will have my message passed into a variable.
    I will then split the message into 4 equal portion to be fit to the placeholder.
    The problem is, the placeholder will display additional space in between a word if that word is splitted. I can't type a very long example, but I will try to explain using the example below,
    My message, V_TEXT is : Hello. Today is Wednesday.
    Let's say I split it to
    V_TEXT1 = Hello. Toda
    V_TEXT2 = y is Wednesday
    V_TEXT3 = blank
    V_TEXT4 = blank
    WHen I display in the system message, the message will become
    "Hello Toda y is Wednesday", with a space between Toda & y. How can I solve this? Thanks in advance.

    Hi Mil,
    Please use &1&2&3&4 in your message instead of & & & &.This will avoid the unnessary space in between.
    Regards,
    Shobha

  • Question about the Documentat​ion Tags for Source Code

    Hello,
    I have a question about CVI's automatic source code documentation. My problem is that is seems like you need to write all documentation for a specific tag on one line. If you don't, a line break will be inserted when the documentation is displayed. Suppose I want to write a large amount of documentation for the function itself, using the HIFN tag. If I don't want linebreaks to be forced in the documentation, I need to write all this documentation on one single line, which kinda messes up my code. If I split the documentation over several HIFN tags, the documentation displayed to the user might look messed up because of all the linebreaks. Is there any escape character I can put at the end of a line, allowing me to split the documentation of several HIFN lines without forcing linebreaks in the documentation?
    Thanks!
    GEMIDIS - Innovating Display Technology
    HQ Ghent, Belgium

    This information is certainly useful. Note, however, that it can also be found in the documentation
    Tag
    Description
    /// HIFN help text
    Specifies the help text for the function. Use multiple /// HIFN tags to display help text for the function on separate lines. To separate help text with an empty line, use /// HIFN on a line by itself. You also can use HTML tags, but you must enclose the tags in <HTML><BODY></BODY></HTML> tags.
    Example
    /// HIFN SampleFunction returns the value of a control.
    int SampleFunction (int controlID, ctrlType controlType, char label[], double *value)
         SomeAction;

  • Question about Stacking

    Hello Everyone,
    I have a quick question about stackwise plus technology. I would like to confirm that there is no redundancy at the ethernet switch port in terms of a physical problem. The reason I ask is that we are deploying stacked switches shortly to ensure high availability but curious to know whether anyone has seen issues with physical ports failing and not the chassis/PSUs. I understand that Etherchannels can be used but we have security cameras that cannot suffer any outages and would be connected to a single port on the stack. I'm guessing that my option is to monitor the Switch Ports statistics via SNMP and move the camera to another port if this ever happens.
    Thanks in advance.
    Cheers.
    Evan

    Disclaimer
    The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
    Liability Disclaimer
    In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
    Posting
    Sure, ports can fail without the whole switch failing, but edge redundancy, such as using dual links (often configured as a bundled channel), between the host and two stack members addresses both switch port failure and stack member failure.
    Unless your security cameras support dual links, your going to have a single point of failure at the edge port.
    Next best options, as you've already noted, would be to have, on-line, "warm" spare ports that you can quickly repatch into.  Ideally you have enough spare ports to allowing repatching in case a whole switch member fails.
    (BTW, when you have spare ports, you don't have to set aside a whole stack member, sitting empty.  For example, instead of having a dual stack with only one switch member populated, and the other not at all, split the populated ports across both stack members.  That way, if a stack member fails, you don't lose all your hosts, only half.  [With cameras, depending on their views, you might be able to overlap their coverage across multiple stack member.])

  • Question about PHP

    I am completely new to programming and have enjoyed Linux so much, that I would like to go into PHP next. Currently I am a University student with a dead end major (Russian Studies). I am looking to get a certificate in PHP over the course of this next year and to find a little better job with it than I could get with my current degree. I would do a Google search for this, however, I have come to like Arch and the community that surrounds it and wanted to know if any you fine web programmers out there, had any suggestions for free online courses in PHP or book that could be purchased. I was also wondering what a good PHP certification exam to take would be. I have seen the Zend exam and was considering doing a test prep for this after I learn a little more about PHP and SQL. Thank you for your help and suggestions!

    Berticus wrote:
    As  I said, to most people, taxonomy doesn't matter.  It does matter to other people, and I don't mean people like me who have these little pet peeves.
    It matters to people who know a lot of languages who need to know when to use what language.  There isn't a single programming or scripting language that can be everything, so it's important for people, mostly software engineers, to know taxonomy, so they can pick a language most optimal for what they need to get done.  Most of the time, when you're dealing with very complex systems.  Instead of using one language for the whole system, you'll find out you'll be using COBRA to handle hardware, C++ to handle interface and C to tie everything together or something like that.
    I mean when you're differentiating between an interpretted language (script) and a program, the issue is efficiency and speed.  No matter what you do, an interpretted language is inherently slower and less efficient than a programming language.  Even Java that is compiled, is compiled to Java Native Language or something like that, and requires the Java Virtual Machine to interpret it (that's why Java gets it's own branch).  I believe it's the fastest interpretted language, but how does it compare to a natively compiled program?  It's still slower.
    Even when you know you're going to use a programming language, you still have choices, because each programming language can be split into a high, middle, and low level language.  Reasons for using different levels are due to how quickly do you need to write the program, how portable does the program need to be, how easy should other people be able to read the program, does it need to have low level abilities such as handling memory directly.  Then there's also the question about how your program is going to flow.  Is it functional or object oriented?
    It's not so much an opionated matter when you think about it.  It's more along the lines of do you need this knowledge or not?  For most people, I'm willing to bet that's everybody who posts in this thread, that information is not important, they don't need to know it, because they handle very, very simple applications compared to the complex systems that do indeed require the programmer or scripter to know the difference.
    Actually, the difference between interpreted and compiled (and faux-compiled) languages is different from the difference between programming and scripting languages, interpreted languages can also be programming languages, and compiled languages can be scripting (although this happens very little and is really pointless and tedious to do )
    'Scripting' usually refers to code meant to extend upon a framework or program separate from the script itself, whereas 'programming' is creating applications that are on their own, separate applications, regardless of whether they're run though an interpreter at runtime. The difference is a bit vague, and you are right in that interpreted languages are often used for scripting, but it is not necessary, look at something like python, this can be used both as scripting for automating tasks quickly by using it's immense library, as well as for creating stand alone applications, which would be programming. (PHP is virtually always scripting, though)
    Either way I prefer the term 'coding'

  • A question about comments

    Hi, all,
    I have a question about the comments:
    Program function comments should be included on the block diagram or Front panel, or both. Thanks.

    Many good things have already been mentioned.
    For the Front panel, there should be a clear distinction between toplevel VIs (or any subVIs where the user must interact with the front panel), and subVIs where the front panel is only of interest to the programmer. The needs here are quite different:
    User Interface VIs
    The front panel should be clear and easy to use. All "help" elements, tip strips, etc are geared towards the end user. The icon is irrelevant, because it is typically not even shown. Everything of interest to code maintenance should be on the diagram.
    subVIs
    Here, the front panel can contain a description of what the subVI does, who created it, company and copyright information, version information, limitations (e.g. input A must be >0), URLs or literature references to the algorithm, etc. (Have a look at any of the openG tools!). The "VI properties...documentation" section should be populated. The icon should be descriptive. All controls and indicators should have intuitive names (not just "Numeric 4", or "Array" )
    Comments specific to certain areas of the code should be placed where they apply, especially if the code uses some exotic algorithm that would make the code hard to interpret.
    Use a programming style that is self-documenting. (e.g. Don't unbundle the error cluster check for "equal zero" to switch a case statement. Wire the error cluster directly to the case so you'll get a red/green error case structure. Much more obvious!)
    If these are proprietary VIs with password protected diagrams You should split the comments: Anything of interest to the non-privileged user goes on the front panel, anything else on the diagram.
    In the end, it does not really matters where you place the comments as long as they are easy to find later and still make sense to somebody else 10 years from now. Message Edited by altenbach on 05-30-2005 01:13 PM
    LabVIEW Champion . Do more with less code and in less time .

  • A question about AdvancedDatagridColumnGroup

    Hi guys,
         Just a quick question about AdvancedDatagridColumnGroup, is the children property only allowed to have an AdvancedDatagridColumn on it?
    Because what I'm trying to do is in my recursive function I'm trying to create a nested AdvancedDataGridColumnGroup, all good until I set the ADG's groupedColumns to a certain array which is a return array of the recursive function. It throws out an exception something in the groupedValidation function of ADG.
    Here's the code that does that
    var createColumnGroup:Function = function( group:Array, xml:* ) : Array
                                  var ret:Array = new Array;
                                  var colGroup:AdvancedDataGridColumnGroup = newAdvancedDataGridColumnGroup;
                                  for(var index:int = 0; index < 1; ++index){
                                        var parts:Array = String(group[index]).split(DELIMITER);
                                        if(parts.length){
                                              colGroup = new AdvancedDataGridColumnGroup;
                                              colGroup.headerText = parts[0];
                                              colGroup.children = [];
                                              var curHeader:String = parts[0];
                                              parts.splice(0,1);
                                                                                         //this is the part where I'm trying to nest the advancedDataGridColumnGroup
                                                                                         // what's to be replaced in this line to make a valid nest of ADGColumnGroup?
                                              if( parts.length > 0){
                                                    colGroup.children.push( createColumn([parts.join(DELIMITER)], xml));
                                                                                ret.push( colGroup )
                                  return ret;
    and I call it like this
    var gCols:Array = createColumn( colsArr, new XML(_xml.children()[0].toString()));
    adg.groupedColumns = gCols;
    Best Regards,
    jd

    Your problem is you have iDVD 4 or earlier. Such versions ONLY supported internal SuperDrives.
    PatchBurn at http://www.patchburn.de/faq.html may help you.

  • A question about DNS subdomain

    This is a question about DNS subdomain.
    The DNS server for the parent DNS domain is dns1.ours.com.
    The DNS server for the child/sub DNS domain is bee.child.ours.com.
    Configurations on dns1.ours.com:
    File: db.ours.com�F
    @IN SOA dns1.ours.com. postmaster.ours.com. (
    10051215 ; sn
    86400 ;refresh
    7100 ;retry
    777600 ;expire
    126000 ) ;min
    @ IN NS dns1.ours.com.
    dns1 IN A 210.x.x.15
    �c
    [color=Blue]child.ours.com. IN NS bee.child.ours.com.
    bee.child.ours.com. IN A 210.x.x.10[color]
    I did not changed anything in named.conf.
    Configurations on bee.child.ours.com:
    File db.child.ours.com:
    @ IN SOA bee.child.ours.com. test.child.ours.com (
    10051215 ; sn
    86400 ;refresh
    7100 ;retry
    777600 ;expire
    126000 ) ;min
    @ IN NS bee.child.ours.com.
    bee IN A 210.x.x.10
    test IN A 210.x.x.x
    File named.conf:
    options {
    directory "/var/named";
    zone "." {
    type hint;
    file "master/db.cache";
    zone "0.0.127.in-addr.arpa" {
    type master;
    file "master/db.0.0.127";
    zone "x.x.210.in-addr.arpa" {
    type master;
    file "master/db.child.ours.com.rev";
    zone "child.ours.com" {
    type master;
    file "master/db.child.ours.com";
    #nslookup
    Default Server: 210.x.x.10
    Address: 210.x.x.10
    // bee.child.ours.com: the DNS server for the child/sub DNS domain: child.ours.com
    www.ours.comServer: 210.x.x.10
    Address: 210.x.x.10
    *** localhost can't find www.ours.com: No response from server
    //failed to resolve A records in the parent domain, but can resolve A records in its own domain and other domains on the Internet.
    set type=ns
    ours.comServer: 210.x.x.10
    Address: 210.x.x.10
    Non-authoritative answer:
    ours.com nameserver = dns1.ours.com
    Authoritative answers can be found from:
    dns1.ours.com internet address = 210.x.x.15
    //find the DNS server for the parent domain
    > server 210.x.x.15
    // dns1.ours.com: the DNS server for the parent DNS domain: ours.com
    Default Server: dns1.ours.com
    Address: 210.x.x.15
    test.child.ours.comServer: dns1.ours.com
    Address: 210.x.x.15
    *** dns1.ours.com can't find test.child.ours.com: No response from server
    //failed to resolve A records in the child domain, but can resolve A records in its own domain and other domains on the Internet.
    set type=ns
    child.ours.comServer: dns1.ours.com
    Address: 210.x.x.15
    Non-authoritative answer:
    child.ours.com nameserver = bee.child.ours.com
    Authoritative answers can be found from:
    bee.child.ours.com internet address = 210.x.x.10
    //find the DNS server for the child domain
    > server 210.x.x.100
    // a public DNS server on the Internet
    Default Server: [210.x.x.100]
    Address: 210.x.x.100
    set type=a
    www.ours.comServer: [210.x.x.100]
    Address: 210.x.x.100
    Non-authoritative answer:
    Name: www.ours.com
    Address: 210.x.x.72
    //find the A record in the parent domain
    test.child.ours.comServer: [210.x.x.100]
    Address: 210.x.x.100
    Non-authoritative answer:
    Name: test.child.ours.com
    Address: 210.x.x.x
    //find the A record in the child domain
    I wonder why. It is BIND v8.2.2.
    Thanks.

    Hi AAnotherUser_,
    Based on your description, the internal domain name is different from the external domain name, and the web server is hosted internally. And the goal is that the internal user can
    access the web server by using an URL which include the MyCorp.com.
    In this scenario, internet users access your domain name by connecting to the WAN IP address of your router. However, to make the internal users access the website, you would need
    to create the external domain name as a zone on your internal DNS server.
    After creating the DNS zone, right click the zone you created, choose New Host Record.
    Type in the hostname, such as ‘www’, and provide the internal private IP address of your internal web server.
    For more details, please refer to Ace’s blog below, the
    Scenario 2: Different Internal and External but you are hosting the webserver internally
    http://blogs.msmvps.com/acefekay/2009/09/03/split-zone-or-no-split-zone-can-t-access-internal-website-with-external-name/
    Best Regards,
    Tina

  • Question about keynote efficiency

    I have a question about the efficiency of a keynote presentation...let me explain...
    I am creating a slide in which I want the entire contents of the slide, 10 objects (a pdf image, 8 shapes, and a text box), to fade out. Following the fade out, I want a text box to appear with a brief instruction.  Following a click, the text box with the brief instruction will fade out and the original 10 objects will fade back in.  I see several options available to accomplish the effect:
    Option 1
    I could create fade out actions for the original 10 objects, have the "brief instruction" text box fade in and hold. Then, after a click, the "brief instruction" text box would fade out and the original 10 objects would fade back in.  The important note here is that all these objects would be on the same slide
    Option 2
    I could create fade out actions for the orginal 10 objects and then move to a new slide.  On the new slide would be the "brief instruction" text box, which would fade in after a short delay.  Then, after a click, the "brief instruction" text box would fade away followed by another new slide which would have copies of the original 10 objects from the first slide.  These 10 objects would then automatically fade back in after a short delay.
    TL;DR: Option 1 has many objects and effects all on one slide, option 2 splits some of the objects and effects onto three different slides.
    My question: Is one of these options more efficient than the other? I imagine in a short presentation it probably doesn't matter, but what about a presentation that starts to get pretty large, say 20 slides or more? Splitting everything up onto three different slides definitely helps me from an organization and planning standpoint.

    Multiple slides.
    Slides are free, all you are doing is duplicating the 10-objects slide and inserting the instruction slide in between. Keynote is like any other slideware - keep the complexity to a minimum.
    Given the weakness of the nomenclature on the animations timing box in Keynote, using the multiple slide method means you can effect any changes very simply and not worry about scanning up and down a endless list of animation items.
    K.I.S.S.
    I hope that helps
    Rowan

  • Questions about your new HP Products? HP Expert Day: January 14th, 2015

    Thank you for coming to Expert Day! The event has now concluded.
    To find out about future events, please visit this page.
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
     We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
     If you still have questions to ask, feel free to post them on the Forum – we always have experts online to help you out.
    So, what is HP Expert Day?
    Expert Day is an online event when HP employees join our Support Forums to answer questions about your HP products. And it’s FREE.
    Ok, how do I get started?
    It’s easy. Come out to the HP Support Forums, post your question, and wait for a response! We’ll have experts online covering our Notebook boards, Desktop boards, Tablet boards, and Printer and all-in-one boards.
    We’ll also be covering the commercial products on the HP Enterprise Business Community. We’ll have experts online covering select boards on the Printing and Digital Imaging and Desktops and Workstations categories.
    What if I need more information?
    For more information and a complete schedule of previous events, check out this post on the forums.
    Is Expert Day an English-only event?
    No. This time we’ll have experts and volunteers online across the globe, answering questions on the English, Simplified Chinese, and Korean forums. Here’s the information:
    Enterprise Business Forum: January 14th 7:00am to 12:00pm and 6:00pm to 11:00pm Pacific Time
    Korean Forum: January 15th 10am to 6pm Korea Time
    Simplified Chinese Forum: January 15th 10am to 6pm China Time
    Looking forward to seeing you on January 14th!
    I am an HP employee.

    My HP, purchased in June 2012, died on Saturday.  I was working in recently installed Photoshop, walked away from my computer to answer the phone and when I came back the screen was blank.  When I turned it on, I got a Windows Error Recovery message.  The computer was locked and wouldn't let me move the arrow keys up or down and hitting f8 didn't do anything. 
    I'm not happy with HP.  Any suggestions?

  • Have questions about your Creative Cloud or Subscription Membership?

    You can find answers to several questions regarding membership to our subscription services.  Please see Membership troubleshooting | Creative Cloud - http://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting- creative-cloud.html for additional information.  You can find information on such topics as:
    I need help completeing my new purchase or upgrade.
    I want to change the credit card on my account.
    I have a question about my membership price or statement charges.
    I want to change my membership: upgrade, renew, or restart.
    I want to cancel my membership.
    How do I access my account information or change update notifications?

    Branching to new discussion.
    Christym16625842 you are welcome to utilize the process listed in Creative Cloud Help | Install, update, or uninstall apps to install and evaluate the applications included with a Creative Cloud Membership.  The software is fully supported on recent Mac computers.  You can find the system requirements for the Creative Cloud at System requirements | Creative Cloud.

  • Questions about using the Voice Memos app

    I'm currently an Android user, but will be getting an iPhone 6 soon. My most used app is the voice memos app on my Android phone. I have a couple questions about the iPhone's built-in voice memos app.
    -Am I able to transfer my voice memos from my Android phone to my iPhone, so my recordings from my Android app will show up in the iPhone's voice memos app?
    -When exporting voice memos from the iPhone to computer, are recordings in MP3 format? If not, what format are they in?
    -In your opinion, how is the recording quality of the voice memos app?

    You cannot import your Android voice memos to your iPhone's voice memo app.  You might be able to play the Android memos and have the iPhone pick up the audio and record it.
    Here is the writeup about sending voice memos from the iPhone to your computer (from the iPhone User Guide):
    App quality is excellent.

Maybe you are looking for

  • How to test 'Matching' memory modules - iMac G5 (ALS)

    Hi there, Does anyone know of a way of checking whether memory modules are working at 128-bit rather than 64-bit? For reasons of cost and availability, I have installed two 1GB DIMMs from different manufacturers in my iMac G5 (ALS). As per the Apple

  • Unable to shrink/resize undo tablespace

    Hi Experts, I have Oracle 10.2.0.4 database running on RHEL 4.7 in production environment, my undo tablespace has grown upto 32 GB, database is rebooted, still the tablespace is full. I want to shrink, resize the undo tablespace, please help me Few d

  • 2 tables - 1 Report

    Hello, I tried to search this subject but didn't find anything. This is what I'm trying to do: I have two tables inside my application. I am creating a report that generates information mostly from table 1 but needs to pull one column from table 2. I

  • What's considered good up/down speed on Wi-Fi?

    I used www.iphonespeedtest.com and was only getting around 250 kbps. Is that bad? I'm right next to my router (wireless g with cable modem).

  • EEnvelope date stamp

    Hello - In Adobe Acrobat 9 Pro, I'm creating a security envelope using Acrobat's included "eEnvelope with Date Stamp" template (template2.pdf). The resulting date stamp is exactly 8 hours ahead of the actual time on my computer's clock (i.e. I create