Help withRegular Expressions in java!

Hi All,
I've written some code using the java.util.regex package to try capture some text from a text file. An example of the code is written below:
// Regexp that will try match in test file
        //Pattern pattern = Pattern.compile("//s*(//d+)//s*");           // won't match
        Pattern pattern = Pattern.compile(".*");                             // matches
        try {
            BufferedReader input =  new BufferedReader(new FileReader(aFile));
            try
                String line = null;
                while (( line = input.readLine()) != null)
                    System.out.println(line);
                    // Use regexp to extract test name from text file
                    Matcher matcher = pattern.matcher(line);
                    System.out.println(matcher.lookingAt() );
            finally
                input.close();
        catch (IOException ex) {
          ex.printStackTrace();
        }The lines of the text file are of the follwing form:
Number SomeText MoreText Number
e.g.
234   testname    50000 If I try capture certain parts of of a line, like the commented out pattern above trying to capture the number, it doesn't match. But if I use the ".*" to capture the whole line it matches. I can't understand why the first pattern doesn't work! Any help in figuring this out would be greatly appreciated!
thanks.

Melanie_Green wrote:
I often refer back to this trusty resource [regex in Java|http://java.sun.com/docs/books/tutorial/essential/regex/index.html]
MelI still use the test harness from that tutorial sometimes when I'm trying to formulate a regex.

Similar Messages

  • Need help in my assignment, Java programing?

    Need help in my assignment, Java programing?
    It is said that there is only one natural number n such that n-1 is a square and
    n + 1 is a cube, that is, n - 1 = x2 and n + 1 = y3 for some natural numbers x and y. Please implement a program in Java.
    plz help!!
    and this is my code
    but I don't no how to finsh it with the right condition!
    plz heelp!!
    and I don't know if it right or wrong!
    PLZ help me!!
    import javax.swing.JOptionPane;
    public class eiman {
    public static void main( String [] args){
    String a,b;
    double n,x,y,z;
    boolean q= true;
    boolean w= false;
    a=JOptionPane.showInputDialog("Please enter a number for n");
    n=Double.parseDouble(a);
    System.out.println(n);
    x=Math.sqrt(n-1);
    y=Math.cbrt(n+1);
    }

    OK I'll bite.
    I assume that this is some kind of assignment.
    What is the program supposed to do?
    1. Figure out the value of N
    2. Given an N determine if it is the correct value
    I would expect #1, but then again this seem to be a strange programming assignment to me.
    // additions followI see by the simulpostings that it is indeed #1.
    So I will give the tried and true advice at the risk of copyright infringement.
    get out a paper and pencil and think about how you would figure this out by hand.
    The structure of a program will emerge from the mists.
    Now that I think about it that advice must be in public domain by now.
    Edited by: johndjr on Oct 14, 2008 3:31 PM
    added additional info

  • Can I read mails in OutLook Express in Java ?

    Hi Guys,
    Just curious if I can access mails in Outlook Express in Java.
    Thank you for your consideration.

    jwenting wrote:
    If memory serves (OE is heavily outdated, haven't used it in years) OE stored its messages as flat text files in a directory on the user's harddisk.
    Reading those files should be child's play.I checked my system and there are only .dbx files created for each mail folder (my filters).I am using Outlook Express 6.0.

  • Using regular expressions in java

    Does anyone of you know a good source or a tutorial for using regular expressions in java.
    I just want to look at some examples....
    Thanks

    thanks a lot... i have one more query
    Boundary matchers
    ^      The beginning of a line
    $      The end of a line
    \b      A word boundary
    \B      A non-word boundary
    \A      The beginning of the input
    \G      The end of the previous match
    \Z      The end of the input but for the final terminator, if any
    \z      The end of the input
    if i want to use the $ for comparing with string(text) then how can i use it.
    Eg if it is $120 i got a hit
    but if its other than that if should not hit.

  • Regular expression in java -- specifically email

    Does anyone know how I can do a regular expression with java that is going to retrieve an email address pattern.
    For example, let's say i have a huge string
    this is a sample test. perhaps someoen can tell me how to retrieve my [email protected] from this string. sincerely yours [email protected]
    could someone explain to me how to retrieve these emai addresses most efficiently using java's regular expressions
    thanks
    stev

    A citing (http://jregex.sourceforge.net/examples-email.html):
    String someValidChars="[\\w.\\-]+";
    String someAlphaNums="\\w+";
    String dot="\\.";
    Pattern email=new Pattern(someValidChars + "@" + someValidChars + dot + someAlphaNums);

  • Please help me with these java puzzle ?

    Dear all,
    My friend send me typical java puzzle about java.util.ArrayList
    which is getting messy. Please help me out. It's not a homework.
    Please help me with these java puzzle ?
    Dear all,
    My friend send me typical java puzzle about java.util.ArrayList
    which is getting messy. Please help me out. It's not a homework.
    import java.util.*;
    public class MyInt ______ ________ {
    public static void main(String[] args) {
    ArrayList<MyInt> list = new ArrayList<MyInt>();
    list.add(new MyInt(2));
    list.add(new MyInt(1));
    Collections.sort(list);
    System.out.println(list);
    private int i;
    public MyInt(int i) { this.i = i; }
    public String toString() { return Integer.toString(i); }
    ________ int ___________ {
    MyInt i2 = (MyInt)o;
    return ________;
    }Hints , fill the underlines with below :
    implements
    extends
    Sortable
    Object
    Comparable
    protected
    public
    i = i2.i
    i
    i2.i=i
    compare(MyInt o, MyInt i2)
    compare(Object o, Object i2)
    sort(Object o) sort(MyInt o)
    compareTo(MyInt o)
    compareTo(Object o)

    Dear all,
    My friend send me typical java puzzle aboutNotwithstanding your pathetic protestations typicial
    of all your posts this is NOT a typical java "puzzle"
    but is indeed a typical homework puzzle.
    And it's damn easy if you spent 30 minutes with a
    tutorial.
    DO YOUR OWN HOMEWORK!
    Hey i did it.
    import java.util.*;
    public class MyInt implements Comparable {
    public static void main(String[] args) {
    ArrayList<MyInt> list = new ArrayList<MyInt>();
    list.add(new MyInt(2));
    list.add(new MyInt(1));
    Collections.sort(list);
    System.out.println(list);
    private int i;
    public MyInt(int i) { this.i = i; }
    public String toString() { return Integer.toString(i); }
    public int compareTo(Object o){
    MyInt i2 = (MyInt)o;
    return i;
    }E:\>javac MyInt.java
    Note: MyInt.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    E:\>java MyInt
    [1, 2]

  • I am in the process of doing a Proof Of Concept / Evaluating products that can help us build a Java Application to Convert a PDF document to a Searchable PDF.   I wanted to check is there any simple JAVA API from Adobe to achive this ? Any direction in th

    I am in the process of doing a Proof Of Concept / Evaluating products that can help us build a Java Application to Convert a PDF document to a Searchable PDF. 
    I wanted to check is there any simple JAVA API from Adobe to achive this ? Any direction in this regard is greatly appreciated.@

    You can achieve this using LiveCycle PDF Generator JAVA API. You can find required code here:
    Adobe LiveCycle * Quick Start (SOAP mode): Converting a Microsoft Word document to a PDF document using the Java API
    In parameters:
    //Set createPDF2 parameter values
    String adobePDFSettings = "Standard";
    String securitySettings = "No Security";
    String fileTypeSettings = "Standard OCR";
    "Standard OCR" file type setting will run OCR on input pdf. In the code, instead of doc file provide a pdf file. Resultant pdf will be searchable PDF i.e OCRed PDF.
    Feel feel to ask any further questions.

  • Help to find a Java Text Editor PLEASE

    HELP! I am in need of a program that will compile, execute and have an "autocomplete" sort of thing to help me with learning java. If there are any programs out there sort of like how Visual Basic in Visual Studio 2003-2005. But I need a program specifically for Java because I am learning. Please Reply as soon as possible. Thanks.

    Yes, that's what I meant.
    When I first started programming in Java (I already had exp with C/C++ and command line tools), I was looking for a IDE that had lots of features, two of which were Drag-an-Drop GUI editing and visual debugging. I admit it, I suffer from the Visual Studio way of doing things.
    I downloaded Eclipse and Netbeans and tried both. Eclipse was faster loading but seemed spartan with its features. I also didn't quite understand the way Eclipse handled projects. It was a terminology thing really. Also, I was not familiar with all the various subproject's for eclipse and lacked time to figure it out.
    I then tried Netbeans which loads slower but had everything I wanted in an IDE. Also calling projects 'projects', was easier for me to wrap my head around. That was in version 4 days. Since then, Netbeans has added alot of add on modules and features that are truly impressive for a free IDE. There are third party modules available on the web and adding them to the IDE is usually a 2 or 3 click process... Easy.
    I haven't checked out Eclipse lately but I'm sure they are also doing things to improve their IDE as well. Competition between the two is a good thing, it just benefits the community as a whole.
    (*gets off his soapbox*)
    JJ

  • Help w/ making a Java Pass

    Hey,
    I need some help in making a Java password applet.More specifically, when a button is clicked (e.getsource) getting the text from one text box, (the passwordbox) and printing a statement in another, or on the applet itself, and then taking them to the designated page. If you can understand this, and can help, PLEASE email me at [email protected] I know there is a way to do it in JavaScript, but I'd like to use an applet.
    Thanks!!
    Hoss

    People here don't typically offer a code writing service. That's not intended to be rude or dismissive - it's just the way things are. For all I know you have may have code written and are facing some problem or other. But if you don't post that code and describe that problem, then it can come across as looking for someone else to write your code: something that will generate a warm, but unproductive, response.
    Or maybe you simply have no idea where to start. In that case have a look at the [Graphical User Interfaces|http://java.sun.com/docs/books/tutorial/ui/index.html] section of Sun's Tutorial. The tutorial itself is quite comprehensive so if there are things there concerning basic Java syntax they are very likely explained in earlier sections.

  • How doest jdk docs help as in writing java code?

    hi i wonder how does jdk docs help as in writing java code because if i google a java code the jdk docs always becomes the result of my search but in my experience jdk docs never helps me.
    is there any one know how to use jdk docs? and how to get the code from there.
    im telling about jdk docs from here http://download.oracle.com/javase/1.4.2/docs/api/
    cross posted from http://www.thenewboston.com/forum/viewtopic.php?f=119&t=13778
    Edited by: 871484 on Jul 18, 2011 4:18 PM

    871484 wrote:
    ok can any one give me example how to use jdk docs? for example this code
    Your question still does not make any sense, and you still haven't clarified what you're not understanding.
    However, if you think that just by reading the API docs, with no other training or study, that you will be able to write that code, then you are seriously misunderstanding the purpose of the docs.
    Obviously English is not your native language. You grew up speaking some other language at home and with your friends, and at some point in school or as private study, you started to learn English. You learned about the grammar and the alphabet and pronunciation, sentence structure, word order, etc. Now you have the basics of how the language works, and you know some words. When you want to learn new words to fit into the structure you have learned, you use a dictionary.
    If you didn't study the grammar, sentence structure, etc., and just said, "I want to learn English. I will look at a dicationary," clearly that would not work.
    Right?
    So, since you now understand and agree with the English example, let me state something that I hope is obvious to you by now: The API docs are your dictionary. They are not a substitute for learning the language basics.
    Furthermore, once you know the language basics in English and have your dictionary, you still won't know how to write a resume (which you may know as a CV). You will look at examples and perhaps take a course on resume (CV) writing. Just reading a dictionary won't help you write a resume(CV). Similarly, if you know some Java basics, you can't learn how to write a Swing app just by reading the Javadocs. You'll look at tutorials and examples. Then, once you know the basic structure of a Swing app, you'll look to the javadocs for more details about more kinds of GUI classes--different buttons and windows and panes and panels and layout managers, etc.

  • Need help with long term Java problems

    I've been having problems with Java on my computer for about a year now, and I'm hoping that someone here can help me out.
    Java used to work fine on the computer when I first got it (a Dell laptop) and I hadn't installed anything myself. But then one day it stopped loading Java applets, and hasn't worked since. By this, I mean that I get the little colorful symbol in a box when I try to play Yahoo games, use the http://www.jigzone.com site, go to chat rooms, etc. Java menus on websites like http://www.hartattack.tv used to work still, but lately they've been giving me that symbol too.
    I've tried downloading a newer version of Java, but nothing I do seems to work, and I don't know of anything I did to trigger it not working. I'm hoping there's a simple solution to this, and I'm just dumb.
    Thanks.

    This might be way off, but it's something that's tripped me up in the past:
    If you are using Sun's Java plugin, the first time you go to a site that has a particular Java applet, you may be asked to approve/reject a security request.
    If you have clicked on any other windows while the request is first being loaded (which can take some time, because this is swing based), then the security dialog box does not pop to the top of the window stack, and doesn't add an entry into the task bar.
    It appears that Java just doesn't work, but it's actually waiting for you to click "Yes". You can check this by hitting alt-tab and seeing if the Java coffee cup icon is one of the options.
    - K

  • Deploying Oracle Express and Java Application in one installation

    Is there a way to deploy a Java application using Oracle express as the back end in one installation? So in other words, rather than installing oracle express separately from the application, we are looking to install from one executable including both the java application and all the necessary components for oracle express to run.
    Your help is greatly appreciated.
    Thank you,
    Mahmoud

    Hello,
    you can install the database using a response file. Depending on the installer of your Java application you could create a kind of meta-installer that creates a response file for the database as well as one response/parameter file for your application installer and hence run both in one step.
    See the [url http://download.oracle.com/docs/cd/E17781_01/install.112/e18802/toc.htm#BABCCGCF]corresponding section of the Installation Guide for details on the response file.
    -Udo

  • Error on Expression Query - java.sql.SQLException: DSRA9420E

    We are getting the below error when we execute an Expression query. Other queries seem to be working fine.
    Has anyone seen this error?
    Any help or suggestions are welcome.
    Thanks
    ERROR -
    java.sql.SQLException: DSRA9420E: Connection cannot be reassociated because child objects are still open.
    at com.ibm.ws.rsadapter.AdapterUtil.toSQLException(AdapterUtil.java:1376)
    at com.ibm.ws.rsadapter.jdbc.WSJdbcConnection.reactivate(WSJdbcConnection.java:2201)
    at com.ibm.ws.rsadapter.jdbc.WSJdbcConnection.prepareStatement(WSJdbcConnection.java:2070)
    at com.ibm.ws.rsadapter.jdbc.WSJdbcConnection.prepareStatement(WSJdbcConnection.java:2039)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.prepareStatement(DatabaseAccessor.java:1295)
    at oracle.toplink.queryframework.SQLCall.prepareStatement(SQLCall.java:185)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:635)
    at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:506)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(CallQueryMechanism.java:134)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(CallQueryMechanism.java:115)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.executeSelectCall(CallQueryMechanism.java:197)
    at oracle.toplink.internal.queryframework.CallQueryMechanism.selectAllRows(CallQueryMechanism.java:567)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMechanism.java:732)
    at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java:707)
    at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:447)
    Edited by: amehta5 on Apr 12, 2012 12:13 PM

    It seems like your connection pool is having issues. How have you configured your connections?
    It seems that WebSphere connection pool is performing some sort of statement cache, and the cache statement it is trying to use is still in use.

  • Perl Regular expression to java Regular Expression

    HI all,
    How can i write java Regular expression for the below Perl Code
    where data.html is my original Html file
    and data2.html is output file.
    open(FPR, "data.html") || die("Could not open data file");
    while ($line=<FPR>) {
    $content .= $line;
    close(FPR);
    open(FPR, ">data2.html") || die("Could not open data2 file");
    # clean white spaces
    $content =~ s/[\n\r\0 ]//g;
    # divide data by td
    $rxp='<tr.*?><td.*?>(.*?)<\/.*?td><td.*?>(.*?)<\/.*?td><td.*?>(.*?)<\/.*?td><td.*?>(.*?)<\/.*?td><td.*?>(.*?)<\/.*?td><td.*?>(.*?)<\/.*?td><td.*?>(.*?)<\/.*?td><td.*?>(.*?)<\/.*?td><\/.*?tr>';
    while ($content=~ m/$rxp/g)
    print FPR "\n".$1."\t".$2."\t".$3."\t".$4."\t".$5."\t".$6."\t".$7."\t".$8."\t";
    print FPR "<br>";
    close(FPR);
    can you help in this regard
    Thanks

    I am able to retrive only one row in this format from data.html file
    <trvalign=middlebordercolor=#ffffff><tdwidth='40'CLASS='tdbgpricespagecolorgrey'><fontface='Arial,Helvetica,sans-serif'size='2'>SB</font></td><t
    dwidth="23"Class=tdbgpricespagecolorgrey><fontface='Arial,Helvetica,sansserif'size='2'>USAirways</font></td><tdwidth="34"Class=tdbgpricespagecolorgrey><fontface='Arial,Helvetica,sans-serif'size='2'>MIA</font></td><tdwidth="31"Class=tdbgpri
    cespagecolorgrey><fontface='Arial,Helvetica,sans-erif'size='2'>LGW</font></td><tdwidth="23"Class=tdbgpricespagecolorgrey><fontface='Arial,Helvetica,sans-serif'size='2'>USAirways</font></td><tdwidth="34"Class=tdbgpricespagecolorgrey><fontface='Arial,Helvetica,sans-serif'size='2'>LGW</font></td>
    But i need the output in this format
    <fontface='Arial,Helvetica,sans-serif'size='2'>SB     <fontface='Arial,Helvetica,sans-serif'size='2'>USAirways     <fontface='Arial,Helvetica,sans-serif'size='2'>MIA     <fontface='Arial,Helvetica,sans-serif'size='2'>LGW     <fontface='Arial,Helvetica,sans-serif'size='2'>USAirways     <fontface='Arial,Helvetica,sans-serif'size='2'>LGW     <fontface='Arial,Helvetica,sans-serif'size='2'>MIA          <br>
    <fontface='Arial,Helvetica,sans-serif'size='2'>CS     <fontface='Arial,Helvetica,sans-serif'size='2'>USAirways     <fontface='Arial,Helvetica,sans-serif'size='2'>MIA     <fontface='Arial,Helvetica,sans-serif'size='2'>LON     <fontface='Arial,Helvetica,sans-serif'size='2'>USAirways     <fontface='Arial,Helvetica,sans-serif'size='2'>LON     <fontface='Arial,Helvetica,sans-serif'size='2'>MIA          <br>
    How can i rewrite the code to achive this.
    Here is my java code
    import java.io.*;
    import java.util.*;
    import java.util.regex.*;
    public class parseHTML {
    public static void main(String[] args)
    try
    BufferedReader in = new BufferedReader(new FileReader("C:\\data.html"));
    PrintWriter out = new PrintWriter(new FileWriter("C:\\data1.html"));
    String aLine = null;
    String abc=null;
    String pattern1 ="<tr.+?><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td><td.+?>(.+?)</.+?td>++";
    Pattern p1 = Pattern.compile(pattern1);
    while((aLine = in.readLine()) != null)
    abc=aLine.replaceAll("(\n|\t|\r)","").replaceAll(" ","");
    Matcher m1 = p1.matcher(abc);
    if(m1.find())
    System.out.println("the value is...."+m1.group());
    out.print(m1.group());
    m1.reset(aLine);
    in.close();
    out.close();
    catch(IOException exception)
    exception.printStackTrace();
    Thanks

  • Please Help: Regular Expression Gives Stack Overflow

    Regular Expressions are the bane of my existence. I hate them and everyone seem to have their own slightly different syntax. Anyhow, I have a problem with the below code, as it gives me a stack overflow:
         public static void main(String[] args) throws IOException {
              System.out.print(parseText(readTextFile("c:\\file.txt"))); // the input file is displayed below
    // simple method to test that the regular expression can be matched. it works for simple expression, but not the one below
    // this is the code that causes stack overflow
         public static String parseText(String inputString) {
               Pattern p = Pattern.compile("<tr>(\\s)*<td class = 'abc[0-9]*(\\s)*'>(.|\\s)+</nobr>(\\s)+</td>(\\s)+</tr>");
               Matcher m = p.matcher(inputString);
               m.find();
               return m.group();
    // this method just reads in a text file and returns a String with the whole content
    // this works, but is posted here for completeness
        public static String readTextFile(String filePath)
            File file = new File(filePath);
              StringBuffer contents = new StringBuffer();
              BufferedReader reader = null;
              try {
                   reader = new BufferedReader(new FileReader(file));
                   String text = null;
                   // repeat until all lines is read
                   while ((text = reader.readLine()) != null) {
                        contents.append(text).append(
                                  System.getProperty("line.separator"));
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } finally {
                   try {
                        if (reader != null) {
                             reader.close();
                   } catch (IOException e) {
                        e.printStackTrace();
              return contents.toString();
        }Below is the content of what I'm feeding the above code as file.txt that results in an error.
       <tr>
            <td class = 'abc1 '>
                <b><a href = 'http://somedomain.com/bla.html' class="a1"> 
                    something 1
                </a></b>   
            </td>
            <td class = 'abc1 '>
                cars 
            </td>
            <td class = 'abc1 ' nowrap align="center">
                ibm
            </td>
            <td class = 'abc1 '>
                <a href = 'http://somedomain.com/bla2.html'>
                    Features
                </a>
            </td>
            <td class = 'abc1 '>
                <nobr>Feb 5, 2009</nobr>
            </td>
        </tr>
       <tr>
            <td class = 'abc1 '>
                <b><a href = 'http://somedomain.com/bla2.html' class="b1"> 
                    something 2
                </a></b>   
            </td>
            <td class = 'abc1 '>
                car 
            </td>
            <td class = 'abc1 ' nowrap align="center">
                sun
            </td>
            <td class = 'abc1 '>
                <a href = 'http://somedomain.com/bla3.html'>
                    Features
                </a>
            </td>
            <td class = 'abc1 '>
                <nobr>Feb 5, 2009</nobr>
            </td>
        </tr>
        Here is some lines from the stack overflow output:
    Exception in thread "main" java.lang.StackOverflowError
         at java.util.regex.Pattern$GroupTail.match(Unknown Source)
         at java.util.regex.Pattern$BranchConn.match(Unknown Source)
         at java.util.regex.Pattern$CharProperty.match(Unknown Source)
         at java.util.regex.Pattern$Branch.match(Unknown Source)
         at java.util.regex.Pattern$GroupHead.match(Unknown Source)However, if I feed the program this shorter version of the input it works (it matches only once and is just the top portion of the original file.txt):
       <tr>
            <td class = 'abc1 '>
                <b><a href = 'http://somedomain.com/bla.html' class="a1"> 
                    something 1
                </a></b>   
            </td>
            <td class = 'abc1 '>
                cars 
            </td>
            <td class = 'abc1 ' nowrap align="center">
                ibm
            </td>
            <td class = 'abc1 '>
                <a href = 'http://somedomain.com/bla2.html'>
                    Features
                </a>
            </td>
            <td class = 'abc1 '>
                <nobr>Feb 5, 2009</nobr>
            </td>
        </tr>I did some google searches, but the problem appears to do with how I crafted my regular expression. The solution didn't make sense to me.... Anyone help me please as I spent a big portion of the day already!

    @flounder,
    Wow, hold your horses...
    That comment was meant to denote my level of frustration with this since I had spent a large portion of the day trying to figure it out. It was not intended to designate my issue or time as more important than others.
    I certainly appreciate any help considering nobody is being compensated in any way for helping me.
    @jschell,
    This is intended to be used as a one time deal to automate recapturing data we no longer have in a non-HTML format.
    I appreciate the suggestion though.
    @JoachimSauer
    Thank you for all your help. I appreciate it!

Maybe you are looking for

  • Mailbox Server Crashed, can I use ActiveSync mail on Ipad to "recover" email

    I had an Exchange 2010 server (only one), running all services have a hard crash with no backup. I was lucky that 2 days earlier setup a second AD controller, and second Exchange server in the environment.  There were no backups of the original serve

  • Mac App Store Stuck - Cannot Sign In

    Hello, I've recently upgraded my Mac OS X from 10.6.2 to 10.6.6 . Now the App Store is installed and shown in my dock , but I can't use it because it cannot connect to iTunes Store . When I open the Mac App Store , "Connecting to iTunes Store ..." ap

  • Create multiple TO's from IM storage type

    Bit rusty on SAP transactions. If I have stock in a 'Differences' Storage Type (non-SU) that I want to bring back into storage on 30 different SU's is this possible? Other than one by one using LT01. Can I use LT04 in some way?

  • IDM Reconciliation Pending Error

    Hi all, I am supporting IDM Application and I have an issue where the Reconciliation process for almost all the resources are in "Recon:Pending" Status and Last Reconciled date and time shows as "never". For few resources, there seems to be no error

  • Sharing photos using Elements 12, Windows 8 machine

    Question: Loaded Elements 12 on Windows 8 machine but cannot share photographs via e-mail. I set preferences for Sharing and received confirmation. When I get to point where connecting to e-mail it just keeps searching and goes nowhere and I get no m