Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Smoogan
  • Content: Threads
  • Order by date
  1. Smoogan

    Advanced Replace

    Hello everyone, I have the following replace function: item.value = item.value.replace(/[.](\s{1,2})?/g, ".").replace(/[.]/g, ". "); Ok. My problem is and I'm not really sure where to start is that I want to only replace the full stops that have a Alphabetic character preceding it. Any...
  2. Smoogan

    Emigrating

    Hi all, I would love to work aboard for a few years, and I'm thinking about applying for Web Development jobs in America. Whats the best way to approach this? Just before anyone asks I'm British, Male, 23. Have been in the web development industry for 7 years now. I'm not looking for an...
  3. Smoogan

    str.replace

    I have the following javascript: str = item.value; var pattern1 = /, /g; var pattern2 = /,/g; str = str.replace(pattern1, ","); str = str.replace(pattern2, ", "); item.value = str; The problem is... each replace works, but not together. The code works on a textarea and automatically ads a...

Part and Inventory Search

Back
Top