Jump to content
xisto Community

TonyMccallum

Members
  • Content Count

    12
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by TonyMccallum

  1. Hello Friends,My ipod shuffle doesn't show up on my Mac notebook? How do I get it to work on there? Any suggestions or help will be appreciated.Thank YouTony Mccallum
  2. Hello Friends, So I need to defragment the hard drive of my mac book so that boot camp will let me repartition it. I would like to avoid having to clone the drive and then clone it back. What are some good utilities for defragmenting. Any suggestions or help will be appreciated. Thanks Tony Mccallum Mac Notebook
  3. Hi Guys, There is not really a good answer to this question. However, Depending on what type of changes that you be making and how they are stored, but it is possible to export objects. Thank You Tony Mccallum Mac Software
  4. Hello Guys, The .NET System.Text.RegularExpressions tools do not use /-delimited strings for regular expressions. Save that for javascript. Remove the leading / and the trailing /mg. Also, the group (.*?) does not make sense. .* is already "optional in that the * allows 0 occurances of the . to match. Remove the ?. Do you really want to match an empty string here? If not, use (.+) instead. When you type this into a C# literal, use @-quoting rather than regular C/C++ style quoting. The leading @ avoids all processing of \ escapes. To get a quote in the string, type a double quote. For example: string pattern = @"^a href=""(.*)"" class=I"; For your tester, just type the string contents: <a href="(.*)" class=I>, without the <> brackets shown here. Thanks and Regards Tony Mccallum Mac Notebook
  5. Hello Friends,For instance I have a very big program where I work and I need to track quite az few things, but I want to move away from paper trails. If anyone having any suggestions regarding this, please share. I did not get any suggestion from my search so I think you will help me in this discussion forum.Thanks and RegardsTony Mccallum
  6. Hello Everyone,I need some nice software for organizing my class notes. If anyone having any suggestions regarding this, please share. I did not get any suggestion from my search so I think you will help me in this discussion forum.Thank YouTony Mccallum
  7. Hi Guys, 1. Open the IDLE text editor that comes bundled with the Python language by clicking on its icon. The IDLE text editor icon is located in the Python directory in your installed programs list (located under All Programs in the Windows Start Menu, and within the Applications folder in OSX). A blank source code file opens in the main editor window. 2. Include the 're' module by writing this line at the top of the source code file: import re 3. Declare a string and assign some email addresses to it, such as this: emailAddresses = 'William@amail.com, John@bmail.com, Bruce@cmail.com 4. Create a regular expression that searches for all possible text permutations in valid email addresses. Regular expressions work by searching for a pattern of characters in a string of text. The pattern you are interested in is any two words joined by an @ symbol. Since email addresses have many valid characters, you want to match all possible characters in each word before and after the @ symbol. This is accomplished with the regular expression [\w\.-], and by adding a + to the end of it, you can repeat this for all the characters. The completed regular expression can be saved to a string like this: regexPattern = r'([\w\.-]+)@([\w\.-]+)' 5. Create a regular expression that replaces all of the domain names with "zmail.com." In this regular expression, the backreference character sequence \1 is used to replace the domain of the email addresses. The backreference refers to a location in a regular expression surrounded in parenthesis. By applying the regular expression to the first backreference, you save the email address but discard the old domain name. You can then add a new domain name, like '@zmail.com.' To save this second regular expression to a variable, you can write this: regexReplacement = r'\1@zmail.com' 6. Apply the regular expressions to the string containing the email addresses like this: emailAddresses = re.sub 7. Print out the email addresses using this line of code. Python 3 uses this syntax for printing: print, while Python 2 uses this syntax: print emailAddresses. 8. Run the program by pressing the F5 key. The program output is: William@zmail.com, John@zmail.com, Bruce@zmail.com Thanks and Regards Tony Mccallum
  8. Hello Friends,Good question, there are free applications over the web which you can use in creating PDFs with security from distribution. I'm sorry, but I can't give you all of them. Just try typing "free pdf converter" in any search engines. My favorite is PrimoPDF. If you are using corel applications, you can convert it there too.Hope this helpsTony Mccallum
  9. Hello Friends,I know that there is one for pc, but I would like one compatible with the mac pro laptop 2008. If anyone having any suggestions regarding this, please share. I did not get any suggestion from my search so I think you will help me in this discussion forum.Thanks in advanceTony Mccallum
  10. Hello Friends,I need a note taking software for mac that will allow me to organize notes in a Cornell-style format? If anyone having any suggestions regarding this, please share. I did not get any suggestion from my search so I think you will help me in this discussion forum.Thanks and RegardsTony Mccallum
  11. Hello Friends,Greeting to all.My name is Tony Mccallum. I am a new member of this community. I have not found the introduction thread of this forum so, I am giving here my introduction. I am very much excited to join in this group. I came to your site with a lot of search. I want to know about different discussions on your site especially the discussion relating to Onenote Mac. I humbly request you to support and cooperate me in the discussion board. If any type of inconvenience, then I apologize for that.Thanks and RegardsTony Mccallum
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.