Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
gm

Test String

Substitution

Processing...

Code Generator

Generated Code

using System; using System.Text.RegularExpressions; public class Example { public static void Main() { string pattern = @"(.*?)(href"":"")([^""]+\/)?([^""\/]+)(\/?)"; string substitution = @"https://docs.microsoft.com/en-us/style-guide/\3\4\5\n"; string input = @"{""metadata"":{""pdf_name"":"".pdf"",""pdf_absolute_path"":""/style-guide/opbuildpdf/TOC.pdf""},""items"":[{""toc_title"":""Welcome"",""href"":""welcome/"",""children"":[{""toc_title"":""What's new"",""href"":""welcome/whats-new""}]},{""toc_title"":""Microsoft's brand voice: above all, simple and human"",""href"":""brand-voice-above-all-simple-human""},{""toc_title"":""Top 10 tips for Microsoft style and voice"",""href"":""top-10-tips-style-voice""},{""toc_title"":""A–Z word list and term collections"",""children"":[{""toc_title"":""Term collections"",""children"":[{""toc_title"":""Accessibility terms"",""href"":""a-z-word-list-term-collections/term-collections/accessibility-terms""},{""toc_title"":""AI and bot terms"",""href"":""a-z-word-list-term-collections/term-collections/ai-bot-terms""},{""toc_title"":""Bits and bytes terms"",""href"":""a-z-word-list-term-collections/term-collections/bits-bytes-terms""},{""toc_title"":""Cloud-computing terms"",""href"":""a-z-word-list-term-collections/term-collections/cloud-computing-terms""},{""toc_title"":""Computer and device terms"",""href"":""a-z-word-list-term-collections/term-collections/computer-device-terms""},{""toc_title"":""Date and time terms"",""href"":""a-z-word-list-term-collections/term-collections/date-time-terms""},{""toc_title"":""Keys and keyboard shortcuts"",""href"":""a-z-word-list-term-collections/term-collections/keys-keyboard-shortcuts""},{""toc_title"":""Mouse and mouse interaction terms"",""href"":""a-z-word-list-term-collections/term-collections/mouse-mouse-interaction-terms""},{""toc_title"":""Security terms"",""href"":""a-z-word-list-term-collections/term-collections/security-terms""},{""toc_title"":""Special characters"",""href"":""a-z-word-list-term-collections/term-collections/special-characters""},{""toc_title"":""Touch and pen interaction terms"",""href"":""a-z-word-list-term-collections/term-collections/touch-pen-interaction-terms""},{""toc_title"":""Units of measure terms"",""href"":""a-z-word-list-term-collections/term-collections/units-of-measure-terms""}]},{""toc_title"":""Numbers and symbols"",""children"":[{""toc_title"":""24/7"",""href"":""a-z-word-list-term-collections/numbers-symbols/twenty-four-seven""},{""toc_title"":""2D, two-dimensional"",""href"":""a-z-word-list-term-collections/numbers-symbols/2d-two-dimensional""},{""toc_title"":""3D, three-dimensional"",""href"":""a-z-word-list-term-collections/numbers-symbols/3d-three-dimensional""},{""toc_title"":""8.5\"" × 11\"" paper"",""href"":""a-z-word-list-term-collections/numbers-symbols/85-x-11-paper""}]},{""toc_title"":""A"",""children"":[{""toc_title"":""abort, abortion"",""href"":""a-z-word-list-term-collections/a/abort-abortion""},{""toc_title"":""above"",""href"":""a-z-word-list-term-collections/a/above""},{""toc_title"":""access"",""href"":""a-z-word-list-term-collections/a/access""},{""toc_title"":""access key"",""href"":""a-z-word-list-term-collections/a/access-key""},{""toc_title"":""accessible"",""href"":""a-z-word-list-term-collections/a/accessible""},{""toc_title"":""achievement"",""href"":""a-z-word-list-term-collections/a/achievement""},{""toc_title"":""actionable"",""href"":""a-z-word-list-term-collections/a/actionable""},{""toc_title"":""active player, active user"",""href"":""a-z-word-list-term-collections/a/active-player-active-user""},{""toc_title"":""adapter"",""href"":""a-z-word-list-term-collections/a/adapter""},{""toc_title"":""add"",""href"":""a-z-word-list-term-collections/a/add""},{""toc_title"":""add-in, add-on"",""href"":""a-z-word-list-term-collections/a/add-in-add-on""},{""toc_title"":""adjacent selection"",""href"":""a-z-word-list-term-collections/a/adjacent-selection""},{""toc_title"":""administer"",""href"":""a-z-word-list-term-collections/a/administer""},{""toc_title"":""administrator, admin"",""href"":""a-z-word-list-term-collections/a/administrator-admin""},{""toc_title"":""afterward"",""href"":""a-z-word-list-term-collections/a/afterward""},{""toc_title"":""against"",""href"":""a-z-word-list-term-collections/a/against""},{""toc_title"":""AI (artificial intelligence)"",""href"":""a-z-word-list-term-collections/a/artificial-intelligence-ai""},{""toc_title"":""alarm"",""href"":""a-z-word-list-term-collections/a/alarm""},{""toc_title"":""alert"",""href"":""a-z-word-list-term-collections/a/alert""},{""toc_title"":""alias"",""href"":""a-z-word-list-term-collections/a/alias""},{""toc_title"":""allow, allows"",""href"":""a-z-word-list-term-collections/a/allow-allows""},{""toc_title"":""alphabetical"",""href"":""a-z-word-list-term-collections/a/alphabetical""},{""toc_title"":""alphanumeric"",""href"":""a-z-word-list-term-collections/a/alphanumeric""},{""toc_title"":""AM, PM"",""href"":""a-z-word-list-term-collections/a/am-pm""},{""toc_title"":""ampersand (&)"",""href"":""a-z-word-list-term-collections/a/ampersand""},{""toc_title"":""and so on"",""href"":""a-z-word-list-term-collections/a/and-so-on""},{""toc_title"":""and/or"",""href"":""a-z-word-list-term-collections/a/and-or""},{""toc_title"":""antialiasing"",""href"":""a-z-word-list-term-collections/a/antialiasing""},{""toc_title"":""antimalware"",""href"":""a-z-word-list-term-collections/a/antimalware""},{""toc_title"":""antispyware"",""href"":""a-z-word-list-term-collections/a/antispyware""},{""toc_title"":""antivirus"",""href"":""a-z-word-list-term-collections/a/antivirus""},{""toc_title"":""app, application"",""href"":""a-z-word-list-term-collections/a/app-application""},{""toc_title"":""appendix, appendices"",""href"":""a-z-word-list-term-collections/a/appendix-appendices""},{""toc_title"":""applet"",""href"":""a-z-word-list-term-collections/a/applet""},{""toc_title"":""application developer, app developer"",""href"":""a-z-word-list-term-collections/a/application-developer-app-developer""},{""toc_title"":""application file, app file"",""href"":""a-z-word-list-term-collections/a/application-file-app-file""},{""toc_title"":""application icon, app icon"",""href"":""a-z-word-list-term-collections/a/application-icon-app-icon""},{""toc_title"":""application window, app window"",""href"":""a-z-word-list-term-collections/a/application-window-app-window""},{""toc_title"":""argument vs. parameter"",""href"":""a-z-word-list-term-collections/a/argument-vs-parameter""},{""toc_title"":""arrow"",""href"":""a-z-word-list-term-collections/a/arrow""},{""toc_title"":""arrow keys"",""href"":""a-z-word-list-term-collections/a/arrow-keys""},{""toc_title"":""as well as"",""href"":""a-z-word-list-term-collections/a/as-well-as""},{""toc_title"":""ask"",""href"":""a-z-word-list-term-collections/a/ask""},{""toc_title"":""assembly language"",""href"":""a-z-word-list-term-collections/a/assembly-language""},{""toc_title"":""assistive"",""href"":""a-z-word-list-term-collections/a/assistive""},{""toc_title"":""assure, ensure, insure"",""href"":""a-z-word-list-term-collections/a/assure-ensure-insure""},{""toc_title"":""asterisk (*)"",""href"":""a-z-word-list-term-collections/a/asterisk""},{""toc_title"":""at sign (@)"",""href"":""a-z-word-list-term-collections/a/at-sign""},{""toc_title"":""attribute"",""href"":""a-z-word-list-term-collections/a/attribute""},{""toc_title"":""audiobook"",""href"":""a-z-word-list-term-collections/a/audiobook""},{""toc_title"":""author"",""href"":""a-z-word-list-term-collections/a/author""},{""toc_title"":""auto-"",""href"":""a-z-word-list-term-collections/a/auto""},{""toc_title"":""avg"",""href"":""a-z-word-list-term-collections/a/avg""}]},{""toc_title"":""B"",""children"":[{""toc_title"":""back end, back-end"",""href"":""a-z-word-list-term-collections/b/back-end""},{""toc_title"":""back up, backup"",""href"":""a-z-word-list-term-collections/b/back-up-backup""},{""toc_title"":""backbone"",""href"":""a-z-word-list-term-collections/b/backbone""},{""toc_title"":""backlight"",""href"":""a-z-word-list-term-collections/b/backlight""},{""toc_title"":""backspace"",""href"":""a-z-word-list-term-collections/b/backspace""},{""toc_title"":""backtab"",""href"":""a-z-word-list-term-collections/b/backtab""},{""toc_title"":""badge"",""href"":""a-z-word-list-term-collections/b/badge""},{""toc_title"":""baseline"",""href"":""a-z-word-list-term-collections/b/baseline""},{""toc_title"":""baud"",""href"":""a-z-word-list-term-collections/b/baud""},{""toc_title"":""beep"",""href"":""a-z-word-list-term-collections/b/beep""},{""toc_title"":""below"",""href"":""a-z-word-list-term-collections/b/below""},{""toc_title"":""beta"",""href"":""a-z-word-list-term-collections/b/beta""},{""toc_title"":""bi-"",""href"":""a-z-word-list-term-collections/b/bi""},{""toc_title"":""big data"",""href"":""a-z-word-list-term-collections/b/big-data""},{""toc_title"":""big-endian, little-endian"",""href"":""a-z-word-list-term-collections/b/big-endian-little-endian""},{""toc_title"":""billion, B"",""href"":""a-z-word-list-term-collections/b/billion-b""},{""toc_title"":""bio"",""href"":""a-z-word-list-term-collections/b/bio""},{""toc_title"":""bitmap"",""href"":""a-z-word-list-term-collections/b/bitmap""},{""toc_title"":""bits per second"",""href"":""a-z-word-list-term-collections/b/bits-per-second""},{""toc_title"":""black box"",""href"":""a-z-word-list-term-collections/b/black-box""},{""toc_title"":""black hat hacker"",""href"":""a-z-word-list-term-collections/b/black-hat-hacker""},{""toc_title"":""blacklist"",""href"":""a-z-word-list-term-collections/b/blacklist""},{""toc_title"":""blade"",""href"":""a-z-word-list-term-collections/b/blade""},{""toc_title"":""blank"",""href"":""a-z-word-list-term-collections/b/blank""},{""toc_title"":""blog, blogger, blogroll, weblog"",""href"":""a-z-word-list-term-collections/b/blog-blogger-blogroll-weblog""},{""toc_title"":""blue screen, bluescreen"",""href"":""a-z-word-list-term-collections/b/blue-screen-bluescreen""},{""toc_title"":""Bluetooth"",""href"":""a-z-word-list-term-collections/b/bluetooth""},{""toc_title"":""Blu-ray Disc"",""href"":""a-z-word-list-term-collections/b/blu-ray-disc""},{""toc_title"":""board"",""href"":""a-z-word-list-term-collections/b/board""},{""toc_title"":""bold"",""href"":""a-z-word-list-term-collections/b/bold""},{""toc_title"":""bookmark"",""href"":""a-z-word-list-term-collections/b/bookmark""},{""toc_title"":""Boolean"",""href"":""a-z-word-list-term-collections/b/boolean""},{""toc_title"":""boot"",""href"":""a-z-word-list-term-collections/b/boot""},{""toc_title"":""bot"",""href"":""a-z-word-list-term-collections/b/bot""},{""toc_title"":""bottom left, bottom right"",""href"":""a-z-word-list-term-collections/b/bottom-left-bottom-right""},{""toc_title"":""bounding outline"",""href"":""a-z-word-list-term-collections/b/bounding-outline""},{""toc_title"":""box"",""href"":""a-z-word-list-term-collections/b/box""},{""toc_title"":""bps"",""href"":""a-z-word-list-term-collections/b/bps""},{""toc_title"":""breakpoint"",""href"":""a-z-word-list-term-collections/b/breakpoint""},{""toc_title"":""broadcast"",""href"":""a-z-word-list-term-collections/b/broadcast""},{""toc_title"":""browse"",""href"":""a-z-word-list-term-collections/b/browse""},{""toc_title"":""bug fix"",""href"":""a-z-word-list-term-collections/b/bug-fix""},{""toc_title"":""build"",""href"":""a-z-word-list-term-collections/b/build""},{""toc_title"":""bulk"",""href"":""a-z-word-list-term-collections/b/bulk""},{""toc_title"":""button"",""href"":""a-z-word-list-term-collections/b/button""},{""toc_title"":""by (publisher or company name)"",""href"":""a-z-word-list-term-collections/b/by""}]},{""toc_title"":""C"",""children"":[{""toc_title"":""C, C++, C#"",""href"":""a-z-word-list-term-collections/c/c-cplusplus-csharp""},{""toc_title"":""cable"",""href"":""a-z-word-list-term-collections/c/cable""},{""toc_title"":""cabling"",""href"":""a-z-word-list-term-collections/c/cabling""},{""toc_title"":""cache vs. disk cache"",""href"":""a-z-word-list-term-collections/c/cache-vs-disk-cache""},{""toc_title"":""calendar"",""href"":""a-z-word-list-term-collections/c/calendar""},{""toc_title"":""call back, callback"",""href"":""a-z-word-list-term-collections/c/call-back-callback""},{""toc_title"":""call out, callout"",""href"":""a-z-word-list-term-collections/c/call-out-callout""},{""toc_title"":""can, may"",""href"":""a-z-word-list-term-collections/c/can-may""},{""toc_title"":""cancel, canceled, canceling, cancellation"",""href"":""a-z-word-list-term-collections/c/cancel-canceled-canceling-cancellation""},{""toc_title"":""carry out vs. run"",""href"":""a-z-word-list-term-collections/c/carry-out-vs-run""},{""toc_title"":""Cascading Style Sheets (CSS)"",""href"":""a-z-word-list-term-collections/c/cascading-style-sheets-css""},{""toc_title"":""catalog"",""href"":""a-z-word-list-term-collections/c/catalog""},{""toc_title"":""category axis"",""href"":""a-z-word-list-term-collections/c/category-axis""},{""toc_title"":""cell phone, cellular phone"",""href"":""a-z-word-list-term-collections/c/cell-phone-cellular-phone""},{""toc_title"":""cellular"",""href"":""a-z-word-list-term-collections/c/cellular""},{""toc_title"":""center on"",""href"":""a-z-word-list-term-collections/c/center-on""},{""toc_title"":""character set"",""href"":""a-z-word-list-term-collections/c/character-set""},{""toc_title"":""chart"",""href"":""a-z-word-list-term-collections/c/chart""},{""toc_title"":""chat"",""href"":""a-z-word-list-term-collections/c/chat""},{""toc_title"":""chatbot"",""href"":""a-z-word-list-term-collections/c/chatbot""},{""toc_title"":""check, check box, check mark"",""href"":""a-z-word-list-term-collections/c/check-check-box-check-mark""},{""toc_title"":""check in"",""href"":""a-z-word-list-term-collections/c/check-in""},{""toc_title"":""child folder"",""href"":""a-z-word-list-term-collections/c/child-folder""},{""toc_title"":""choose"",""href"":""a-z-word-list-term-collections/c/choose""},{""toc_title"":""clear"",""href"":""a-z-word-list-term-collections/c/clear""},{""toc_title"":""click"",""href"":""a-z-word-list-term-collections/c/click""},{""toc_title"":""clickstream"",""href"":""a-z-word-list-term-collections/c/clickstream""},{""toc_title"":""clickthrough"",""href"":""a-z-word-list-term-collections/c/clickthrough""},{""toc_title"":""client"",""href"":""a-z-word-list-term-collections/c/client""},{""toc_title"":""client side, client-side"",""href"":""a-z-word-list-term-collections/c/client-side""},{""toc_title"":""client/server"",""href"":""a-z-word-list-term-collections/c/client-server""},{""toc_title"":""clipboard"",""href"":""a-z-word-list-term-collections/c/clipboard""},{""toc_title"":""close"",""href"":""a-z-word-list-term-collections/c/close""},{""toc_title"":""Close button"",""href"":""a-z-word-list-term-collections/c/close-button""},{""toc_title"":""cloud"",""href"":""a-z-word-list-term-collections/c/cloud""},{""toc_title"":""cloud platform"",""href"":""a-z-word-list-term-collections/c/cloud-platform""},{""toc_title"":""cloud services"",""href"":""a-z-word-list-term-collections/c/cloud-services""},{""toc_title"":""co-"",""href"":""a-z-word-list-term-collections/c/co""},{""toc_title"":""code page"",""href"":""a-z-word-list-term-collections/c/code-page""},{""toc_title"":""code point"",""href"":""a-z-word-list-term-collections/c/code-point""},{""toc_title"":""codec"",""href"":""a-z-word-list-term-collections/c/codec""},{""toc_title"":""color map"",""href"":""a-z-word-list-term-collections/c/color-map""},{""toc_title"":""column format"",""href"":""a-z-word-list-term-collections/c/column-format""},{""toc_title"":""combo box"",""href"":""a-z-word-list-term-collections/c/combo-box""},{""toc_title"":""command"",""href"":""a-z-word-list-term-collections/c/command""},{""toc_title"":""command button"",""href"":""a-z-word-list-term-collections/c/command-button""},{""toc_title"":""command line, command-line"",""href"":""a-z-word-list-term-collections/c/command-line""},{""toc_title"":""command prompt"",""href"":""a-z-word-list-term-collections/c/command-prompt""},{""toc_title"":""community cloud"",""href"":""a-z-word-list-term-collections/c/community-cloud""},{""toc_title"":""company vs. organization"",""href"":""a-z-word-list-term-collections/c/company-vs-organization""},{""toc_title"":""compile"",""href"":""a-z-word-list-term-collections/c/compile""},{""toc_title"":""compute"",""href"":""a-z-word-list-term-collections/c/compute""},{""toc_title"":""computer"",""href"":""a-z-word-list-term-collections/c/computer""},{""toc_title"":""connect"",""href"":""a-z-word-list-term-collections/c/connect""},{""toc_title"":""console"",""href"":""a-z-word-list-term-collections/c/console""},{""toc_title"":""context menu"",""href"":""a-z-word-list-term-collections/c/context-menu""},{""toc_title"":""context-sensitive"",""href"":""a-z-word-list-term-collections/c/context-sensitive""},{""toc_title"":""contiguous selection"",""href"":""a-z-word-list-term-collections/c/contiguous-selection""},{""toc_title"":""control"",""href"":""a-z-word-list-term-collections/c/control""},{""toc_title"":""Control Panel"",""href"":""a-z-word-list-term-collections/c/control-panel""},{""toc_title"":""controller"",""href"":""a-z-word-list-term-collections/c/controller""},{""toc_title"":""control-menu box"",""href"":""a-z-word-list-term-collections/c/control-menu-box""},{""toc_title"":""conversation as a platform (CaaP)"",""href"":""a-z-word-list-term-collections/c/conversation-as-a-platform-caap""},{""toc_title"":""conversational user interface (CUI)"",""href"":""a-z-word-list-term-collections/c/conversational-user-interface-cui""},{""toc_title"":""-core"",""href"":""a-z-word-list-term-collections/c/dash-core""},{""toc_title"":""corrupted"",""href"":""a-z-word-list-term-collections/c/corrupted""},{""toc_title"":""country or region"",""href"":""a-z-word-list-term-collections/c/country-or-region""},{""toc_title"":""crash"",""href"":""a-z-word-list-term-collections/c/crash""},{""toc_title"":""cut, cut-and-paste"",""href"":""a-z-word-list-term-collections/c/cut-and-paste""},{""toc_title"":""cyber-"",""href"":""a-z-word-list-term-collections/c/cyber""}]},{""toc_title"":""D"",""children"":[{""toc_title"":""data, datum"",""href"":""a-z-word-list-term-collections/d/data-datum""},{""toc_title"":""data binding"",""href"":""a-z-word-list-term-collections/d/data-binding""},{""toc_title"":""data record"",""href"":""a-z-word-list-term-collections/d/data-record""},{""toc_title"":""database"",""href"":""a-z-word-list-term-collections/d/database""},{""toc_title"":""datacenter"",""href"":""a-z-word-list-term-collections/d/datacenter""},{""toc_title"":""datagram"",""href"":""a-z-word-list-term-collections/d/datagram""},{""toc_title"":""deaf or hard-of-hearing"",""href"":""a-z-word-list-term-collections/d/deaf-or-hard-of-hearing""},{""toc_title"":""debug"",""href"":""a-z-word-list-term-collections/d/debug""},{""toc_title"":""deceptive software"",""href"":""a-z-word-list-term-collections/d/deceptive-software""},{""toc_title"":""decrement"",""href"":""a-z-word-list-term-collections/d/decrement""},{""toc_title"":""default"",""href"":""a-z-word-list-term-collections/d/default""},{""toc_title"":""defragment"",""href"":""a-z-word-list-term-collections/d/defragment""},{""toc_title"":""deinstall"",""href"":""a-z-word-list-term-collections/d/deinstall""},{""toc_title"":""delete"",""href"":""a-z-word-list-term-collections/d/delete""},{""toc_title"":""demilitarized zone (DMZ)"",""href"":""a-z-word-list-term-collections/d/demilitarized-zone-dmz""},{""toc_title"":""deprecated"",""href"":""a-z-word-list-term-collections/d/deprecated""},{""toc_title"":""depress, depressed"",""href"":""a-z-word-list-term-collections/d/depress-depressed""},{""toc_title"":""deselect"",""href"":""a-z-word-list-term-collections/d/deselect""},{""toc_title"":""desktop"",""href"":""a-z-word-list-term-collections/d/desktop""},{""toc_title"":""destination"",""href"":""a-z-word-list-term-collections/d/destination""},{""toc_title"":""destination drive, destination file"",""href"":""a-z-word-list-term-collections/d/destination-drive-destination-file""},{""toc_title"":""device"",""href"":""a-z-word-list-term-collections/d/device""},{""toc_title"":""device driver, driver"",""href"":""a-z-word-list-term-collections/d/device-driver-driver""},{""toc_title"":""DevOps"",""href"":""a-z-word-list-term-collections/d/devops""},{""toc_title"":""dialog box, dialog, dialogue"",""href"":""a-z-word-list-term-collections/d/dialog-box-dialog-dialogue""},{""toc_title"":""dial-up"",""href"":""a-z-word-list-term-collections/d/dial-up""},{""toc_title"":""different"",""href"":""a-z-word-list-term-collections/d/different""},{""toc_title"":""dimmed"",""href"":""a-z-word-list-term-collections/d/dimmed""},{""toc_title"":""direction keys"",""href"":""a-z-word-list-term-collections/d/direction-keys""},{""toc_title"":""directory"",""href"":""a-z-word-list-term-collections/d/directory""},{""toc_title"":""disable, disabled"",""href"":""a-z-word-list-term-collections/d/disable-disabled""},{""toc_title"":""disc"",""href"":""a-z-word-list-term-collections/d/disc""},{""toc_title"":""disjoint selection"",""href"":""a-z-word-list-term-collections/d/disjoint-selection""},{""toc_title"":""disk"",""href"":""a-z-word-list-term-collections/d/disk""},{""toc_title"":""disk resource"",""href"":""a-z-word-list-term-collections/d/disk-resource""},{""toc_title"":""disk space"",""href"":""a-z-word-list-term-collections/d/disk-space""},{""toc_title"":""display"",""href"":""a-z-word-list-term-collections/d/display""},{""toc_title"":""display adapter, display driver"",""href"":""a-z-word-list-term-collections/d/display-adapter-display-driver""},{""toc_title"":""DNS"",""href"":""a-z-word-list-term-collections/d/dns""},{""toc_title"":""document"",""href"":""a-z-word-list-term-collections/d/document""},{""toc_title"":""domain"",""href"":""a-z-word-list-term-collections/d/domain""},{""toc_title"":""dot-com"",""href"":""a-z-word-list-term-collections/d/dot-com""},{""toc_title"":""dotted rectangle"",""href"":""a-z-word-list-term-collections/d/dotted-rectangle""},{""toc_title"":""double buffering"",""href"":""a-z-word-list-term-collections/d/double-buffering""},{""toc_title"":""double-click, double-clicking"",""href"":""a-z-word-list-term-collections/d/double-click-double-clicking""},{""toc_title"":""downgrade"",""href"":""a-z-word-list-term-collections/d/downgrade""},{""toc_title"":""download"",""href"":""a-z-word-list-term-collections/d/download""},{""toc_title"":""drag, drag and drop"",""href"":""a-z-word-list-term-collections/d/drag-and-drop""},{""toc_title"":""drill down, drill up, drill through"",""href"":""a-z-word-list-term-collections/d/drill-down-drill-up-drill-through""},{""toc_title"":""drive"",""href"":""a-z-word-list-term-collections/d/drive""},{""toc_title"":""drive name"",""href"":""a-z-word-list-term-collections/d/drive-name""},{""toc_title"":""drop-down"",""href"":""a-z-word-list-term-collections/d/drop-down""},{""toc_title"":""DVD"",""href"":""a-z-word-list-term-collections/d/dvd""},{""toc_title"":""dynamic-link library (DLL)"",""href"":""a-z-word-list-term-collections/d/dynamic-link-library-dll""},{""toc_title"":""dynamic service capacity"",""href"":""a-z-word-list-term-collections/d/dynamic-service-capacity""}]},{""toc_title"":""E"",""children"":[{""toc_title"":""e.g."",""href"":""a-z-word-list-term-collections/e/eg""},{""toc_title"":""earlier"",""href"":""a-z-word-list-term-collections/e/earlier""},{""toc_title"":""e-book"",""href"":""a-z-word-list-term-collections/e/e-book""},{""toc_title"":""e-commerce"",""href"":""a-z-word-list-term-collections/e/e-commerce""},{""toc_title"":""e-discovery"",""href"":""a-z-word-list-term-collections/e/e-discovery""},{""toc_title"":""edutainment"",""href"":""a-z-word-list-term-collections/e/edutainment""},{""toc_title"":""e-form, form"",""href"":""a-z-word-list-term-collections/e/e-form-form""},{""toc_title"":""either/or"",""href"":""a-z-word-list-term-collections/e/either-or""},{""toc_title"":""elastic service capacity"",""href"":""a-z-word-list-term-collections/e/elastic-service-capacity""},{""toc_title"":""e-learning"",""href"":""a-z-word-list-term-collections/e/e-learning""},{""toc_title"":""ellipsis button"",""href"":""a-z-word-list-term-collections/e/ellipsis-button""},{""toc_title"":""email"",""href"":""a-z-word-list-term-collections/e/email""},{""toc_title"":""embed"",""href"":""a-z-word-list-term-collections/e/embed""},{""toc_title"":""emoticons, emoji"",""href"":""a-z-word-list-term-collections/e/emoticons-emoji""},{""toc_title"":""enable, enables"",""href"":""a-z-word-list-term-collections/e/enable-enables""},{""toc_title"":""end"",""href"":""a-z-word-list-term-collections/e/end""},{""toc_title"":""endline"",""href"":""a-z-word-list-term-collections/e/endline""},{""toc_title"":""endpoint"",""href"":""a-z-word-list-term-collections/e/endpoint""},{""toc_title"":""End-User License Agreement (EULA)"",""href"":""a-z-word-list-term-collections/e/end-user-license-agreement-eula""},{""toc_title"":""ensure, insure, assure"",""href"":""a-z-word-list-term-collections/e/ensure-insure-assure""},{""toc_title"":""enter"",""href"":""a-z-word-list-term-collections/e/enter""},{""toc_title"":""enterprise"",""href"":""a-z-word-list-term-collections/e/enterprise""},{""toc_title"":""entry field"",""href"":""a-z-word-list-term-collections/e/entry-field""},{""toc_title"":""environment variable"",""href"":""a-z-word-list-term-collections/e/environment-variable""},{""toc_title"":""erase"",""href"":""a-z-word-list-term-collections/e/erase""},{""toc_title"":""e-sports"",""href"":""a-z-word-list-term-collections/e/e-sports""},{""toc_title"":""et al."",""href"":""a-z-word-list-term-collections/e/et-al""},{""toc_title"":""etc."",""href"":""a-z-word-list-term-collections/e/etc""},{""toc_title"":""euro"",""href"":""a-z-word-list-term-collections/e/euro""},{""toc_title"":""e-words"",""href"":""a-z-word-list-term-collections/e/e-words""},{""toc_title"":""executable, .exe"",""href"":""a-z-word-list-term-collections/e/executable-exe""},{""toc_title"":""execute"",""href"":""a-z-word-list-term-collections/e/execute""},{""toc_title"":""exit"",""href"":""a-z-word-list-term-collections/e/exit""},{""toc_title"":""expand, collapse"",""href"":""a-z-word-list-term-collections/e/expand-collapse""},{""toc_title"":""expose"",""href"":""a-z-word-list-term-collections/e/expose""},{""toc_title"":""extend"",""href"":""a-z-word-list-term-collections/e/extend""},{""toc_title"":""extension, file name extension"",""href"":""a-z-word-list-term-collections/e/extension-file-name-extension""}]},{""toc_title"":""F"",""children"":[{""toc_title"":""fail"",""href"":""a-z-word-list-term-collections/f/fail""},{""toc_title"":""fail over, fail back, failover, failback"",""href"":""a-z-word-list-term-collections/f/fail-over-fail-back-failover-failback""},{""toc_title"":""FALSE"",""href"":""a-z-word-list-term-collections/f/false""},{""toc_title"":""family"",""href"":""a-z-word-list-term-collections/f/family""},{""toc_title"":""Far East"",""href"":""a-z-word-list-term-collections/f/far-east""},{""toc_title"":""far-left, far-right"",""href"":""a-z-word-list-term-collections/f/far-left-far-right""},{""toc_title"":""favorite"",""href"":""a-z-word-list-term-collections/f/favorite""},{""toc_title"":""fax"",""href"":""a-z-word-list-term-collections/f/fax""},{""toc_title"":""field"",""href"":""a-z-word-list-term-collections/f/field""},{""toc_title"":""file"",""href"":""a-z-word-list-term-collections/f/file""},{""toc_title"":""file attributes"",""href"":""a-z-word-list-term-collections/f/file-attributes""},{""toc_title"":""File Explorer"",""href"":""a-z-word-list-term-collections/f/file-explorer""},{""toc_title"":""file name"",""href"":""a-z-word-list-term-collections/f/file-name""},{""toc_title"":""file name extension, extension"",""href"":""a-z-word-list-term-collections/f/file-name-extension-extension""},{""toc_title"":""finalize"",""href"":""a-z-word-list-term-collections/f/finalize""},{""toc_title"":""find and replace"",""href"":""a-z-word-list-term-collections/f/find-replace""},{""toc_title"":""first line, first-line"",""href"":""a-z-word-list-term-collections/f/first-line""},{""toc_title"":""fitness band"",""href"":""a-z-word-list-term-collections/f/fitness-band""},{""toc_title"":""fixed disk"",""href"":""a-z-word-list-term-collections/f/fixed-disk""},{""toc_title"":""flick"",""href"":""a-z-word-list-term-collections/f/flick""},{""toc_title"":""flush, flush to"",""href"":""a-z-word-list-term-collections/f/flush-flush-to""},{""toc_title"":""flyout"",""href"":""a-z-word-list-term-collections/f/flyout""},{""toc_title"":""folder, folder icon"",""href"":""a-z-word-list-term-collections/f/folder-folder-icon""},{""toc_title"":""following"",""href"":""a-z-word-list-term-collections/f/following""},{""toc_title"":""font, font style"",""href"":""a-z-word-list-term-collections/f/font-font-style""},{""toc_title"":""foo, foobar, fubar"",""href"":""a-z-word-list-term-collections/f/foo-foobar-fubar""},{""toc_title"":""footer"",""href"":""a-z-word-list-term-collections/f/footer""},{""toc_title"":""foreground program"",""href"":""a-z-word-list-term-collections/f/foreground-program""},{""toc_title"":""format, formatted, formatting"",""href"":""a-z-word-list-term-collections/f/format-formatted-formatting""},{""toc_title"":""fourth-generation language"",""href"":""a-z-word-list-term-collections/f/fourth-generation-language""},{""toc_title"":""frameset"",""href"":""a-z-word-list-term-collections/f/frameset""},{""toc_title"":""freeze, frozen"",""href"":""a-z-word-list-term-collections/f/freeze-frozen""},{""toc_title"":""friendly name"",""href"":""a-z-word-list-term-collections/f/friendly-name""},{""toc_title"":""from vs. on"",""href"":""a-z-word-list-term-collections/f/from-vs-on""},{""toc_title"":""front end, front-end"",""href"":""a-z-word-list-term-collections/f/front-end""},{""toc_title"":""full screen, full-screen"",""href"":""a-z-word-list-term-collections/f/full-screen""},{""toc_title"":""function"",""href"":""a-z-word-list-term-collections/f/function""}]},{""toc_title"":""G"",""children"":[{""toc_title"":""gallery"",""href"":""a-z-word-list-term-collections/g/gallery""},{""toc_title"":""game pad"",""href"":""a-z-word-list-term-collections/g/game-pad""},{""toc_title"":""garbage collection, garbage collector"",""href"":""a-z-word-list-term-collections/g/garbage-collection-garbage-collector""},{""toc_title"":""General Data Protection Regulation (GDPR)"",""href"":""a-z-word-list-term-collections/g/general-data-protection-regulation-gdpr""},{""toc_title"":""general protection fault, GP fault"",""href"":""a-z-word-list-term-collections/g/general-protection-fault-gp-fault""},{""toc_title"":""gigabit, Gbit"",""href"":""a-z-word-list-term-collections/g/gigabit""},{""toc_title"":""gigabyte, GB, G, G byte, Gbyte"",""href"":""a-z-word-list-term-collections/g/gigabyte""},{""toc_title"":""gigahertz, GHz"",""href"":""a-z-word-list-term-collections/g/gigahertz""},{""toc_title"":""given"",""href"":""a-z-word-list-term-collections/g/given""},{""toc_title"":""global"",""href"":""a-z-word-list-term-collections/g/global""},{""toc_title"":""glyph"",""href"":""a-z-word-list-term-collections/g/glyph""},{""toc_title"":""go to"",""href"":""a-z-word-list-term-collections/g/go-to""},{""toc_title"":""graphic, graphics, graphical"",""href"":""a-z-word-list-term-collections/g/graphic-graphics-graphical""},{""toc_title"":""graphics adapter"",""href"":""a-z-word-list-term-collections/g/graphics-adapter""},{""toc_title"":""gray, grayed out"",""href"":""a-z-word-list-term-collections/g/gray-grayed-out""},{""toc_title"":""greater, better"",""href"":""a-z-word-list-term-collections/g/greater-better""},{""toc_title"":""greylist"",""href"":""a-z-word-list-term-collections/g/greylist""},{""toc_title"":""gridline"",""href"":""a-z-word-list-term-collections/g/gridline""},{""toc_title"":""group box"",""href"":""a-z-word-list-term-collections/g/group-box""},{""toc_title"":""group, newsgroup"",""href"":""a-z-word-list-term-collections/g/group-newsgroup""},{""toc_title"":""grow"",""href"":""a-z-word-list-term-collections/g/grow""}]},{""toc_title"":""H"",""children"":[{""toc_title"":""hack, hacker"",""href"":""a-z-word-list-term-collections/h/hack-hacker""},{""toc_title"":""half inch"",""href"":""a-z-word-list-term-collections/h/half-inch""},{""toc_title"":""handheld, handheld device"",""href"":""a-z-word-list-term-collections/h/handheld-handheld-device""},{""toc_title"":""handle"",""href"":""a-z-word-list-term-collections/h/handle""},{""toc_title"":""handshake"",""href"":""a-z-word-list-term-collections/h/handshake""},{""toc_title"":""hang"",""href"":""a-z-word-list-term-collections/h/hang""},{""toc_title"":""hard copy"",""href"":""a-z-word-list-term-collections/h/hard-copy""},{""toc_title"":""hard drive"",""href"":""a-z-word-list-term-collections/h/hard-drive""},{""toc_title"":""hard-code, hard-coded, hard-coding"",""href"":""a-z-word-list-term-collections/h/hard-code-hard-coded-hard-coding""},{""toc_title"":""hard-of-hearing"",""href"":""a-z-word-list-term-collections/h/hard-of-hearing""},{""toc_title"":""hardwired"",""href"":""a-z-word-list-term-collections/h/hardwired""},{""toc_title"":""HDMI (High-Definition Multimedia Interface)"",""href"":""a-z-word-list-term-collections/h/hdmi""},{""toc_title"":""header"",""href"":""a-z-word-list-term-collections/h/header""},{""toc_title"":""heading"",""href"":""a-z-word-list-term-collections/h/heading""},{""toc_title"":""hearing-impaired"",""href"":""a-z-word-list-term-collections/h/hearing-impaired""},{""toc_title"":""Help"",""href"":""a-z-word-list-term-collections/h/help""},{""toc_title"":""he/she"",""href"":""a-z-word-list-term-collections/h/he-she""},{""toc_title"":""hexadecimal"",""href"":""a-z-word-list-term-collections/h/hexadecimal""},{""toc_title"":""hierarchical menu"",""href"":""a-z-word-list-term-collections/h/hierarchical-menu""},{""toc_title"":""higher"",""href"":""a-z-word-list-term-collections/h/higher""},{""toc_title"":""high-level-language compiler"",""href"":""a-z-word-list-term-collections/h/high-level-language-compiler""},{""toc_title"":""high-quality"",""href"":""a-z-word-list-term-collections/h/high-quality""},{""toc_title"":""high-resolution"",""href"":""a-z-word-list-term-collections/h/high-resolution""},{""toc_title"":""hint"",""href"":""a-z-word-list-term-collections/h/hint""},{""toc_title"":""hit"",""href"":""a-z-word-list-term-collections/h/hit""},{""toc_title"":""home directory"",""href"":""a-z-word-list-term-collections/h/home-directory""},{""toc_title"":""home, home page"",""href"":""a-z-word-list-term-collections/h/home-home-page""},{""toc_title"":""honeypot"",""href"":""a-z-word-list-term-collections/h/honeypot""},{""toc_title"":""host name"",""href"":""a-z-word-list-term-collections/h/host-name""},{""toc_title"":""hosted service"",""href"":""a-z-word-list-term-collections/h/hosted-service""},{""toc_title"":""hosting provider"",""href"":""a-z-word-list-term-collections/h/hosting-provider""},{""toc_title"":""hot key"",""href"":""a-z-word-list-term-collections/h/hot-key""},{""toc_title"":""hot link"",""href"":""a-z-word-list-term-collections/h/hot-link""},{""toc_title"":""hot spot, hotspot"",""href"":""a-z-word-list-term-collections/h/hot-spot-hotspot""},{""toc_title"":""hover over, hovering"",""href"":""a-z-word-list-term-collections/h/hover-over-hovering""},{""toc_title"":""how to, how-to"",""href"":""a-z-word-list-term-collections/h/how-how-to""},{""toc_title"":""HTML"",""href"":""a-z-word-list-term-collections/h/html""},{""toc_title"":""HTTP, HTTPS"",""href"":""a-z-word-list-term-collections/h/http-https""},{""toc_title"":""hybrid cloud"",""href"":""a-z-word-list-term-collections/h/hybrid-cloud""},{""toc_title"":""hyperlink"",""href"":""a-z-word-list-term-collections/h/hyperlink""}]},{""toc_title"":""I"",""children"":[{""toc_title"":""icon"",""href"":""a-z-word-list-term-collections/i/icon""},{""toc_title"":""iconize"",""href"":""a-z-word-list-term-collections/i/iconize""},{""toc_title"":""i.e."",""href"":""a-z-word-list-term-collections/i/ie""},{""toc_title"":""if vs. whether vs. when"",""href"":""a-z-word-list-term-collections/i/if-vs-whether-vs-when""},{""toc_title"":""illegal"",""href"":""a-z-word-list-term-collections/i/illegal""},{""toc_title"":""image map"",""href"":""a-z-word-list-term-collections/i/image-map""},{""toc_title"":""imbed"",""href"":""a-z-word-list-term-collections/i/imbed""},{""toc_title"":""impact"",""href"":""a-z-word-list-term-collections/i/impact""},{""toc_title"":""inactive, inactive state"",""href"":""a-z-word-list-term-collections/i/inactive-inactive-state""},{""toc_title"":""inbound"",""href"":""a-z-word-list-term-collections/i/inbound""},{""toc_title"":""incoming, outgoing"",""href"":""a-z-word-list-term-collections/i/incoming-outgoing""},{""toc_title"":""increment"",""href"":""a-z-word-list-term-collections/i/increment""},{""toc_title"":""indent, outdent"",""href"":""a-z-word-list-term-collections/i/indent-outdent""},{""toc_title"":""index, indexes, indices"",""href"":""a-z-word-list-term-collections/i/index-indexes-indices""},{""toc_title"":""info"",""href"":""a-z-word-list-term-collections/i/info""},{""toc_title"":""infrastructure as a service (IaaS)"",""href"":""a-z-word-list-term-collections/i/infrastructure-as-a-service""},{""toc_title"":""initialize"",""href"":""a-z-word-list-term-collections/i/initialize""},{""toc_title"":""initiate"",""href"":""a-z-word-list-term-collections/i/initiate""},{""toc_title"":""inline"",""href"":""a-z-word-list-term-collections/i/inline""},{""toc_title"":""input"",""href"":""a-z-word-list-term-collections/i/input""},{""toc_title"":""input/output, I/O, input/output control"",""href"":""a-z-word-list-term-collections/i/input-output""},{""toc_title"":""insecure"",""href"":""a-z-word-list-term-collections/i/insecure""},{""toc_title"":""inside"",""href"":""a-z-word-list-term-collections/i/inside""},{""toc_title"":""install"",""href"":""a-z-word-list-term-collections/i/install""},{""toc_title"":""instant message, IM"",""href"":""a-z-word-list-term-collections/i/instant-message-im""},{""toc_title"":""instantiate"",""href"":""a-z-word-list-term-collections/i/instantiate""},{""toc_title"":""insure, assure, ensure"",""href"":""a-z-word-list-term-collections/i/insure-assure-ensure""},{""toc_title"":""intelligence, intelligent technology"",""href"":""a-z-word-list-term-collections/i/intelligence-intelligent-technology""},{""toc_title"":""interface"",""href"":""a-z-word-list-term-collections/i/interface""},{""toc_title"":""internet, intranet, extranet"",""href"":""a-z-word-list-term-collections/i/internet-intranet-extranet""},{""toc_title"":""Internet Connection Sharing"",""href"":""a-z-word-list-term-collections/i/internet-connection-sharing""},{""toc_title"":""Internet Explorer"",""href"":""a-z-word-list-term-collections/i/internet-explorer""},{""toc_title"":""Internet of Things (IoT)"",""href"":""a-z-word-list-term-collections/i/internet-of-things-iot""},{""toc_title"":""internet service provider (ISP)"",""href"":""a-z-word-list-term-collections/i/internet-service-provider""},{""toc_title"":""invalid, not valid"",""href"":""a-z-word-list-term-collections/i/invalid-not-valid""},{""toc_title"":""invoke"",""href"":""a-z-word-list-term-collections/i/invoke""},{""toc_title"":""IP address"",""href"":""a-z-word-list-term-collections/i/ip-address""},{""toc_title"":""issue"",""href"":""a-z-word-list-term-collections/i/issue""},{""toc_title"":""IT pro, IT professional"",""href"":""a-z-word-list-term-collections/i/it-pro-it-professional""},{""toc_title"":""italic"",""href"":""a-z-word-list-term-collections/i/italic""},{""toc_title"":""its vs. it's"",""href"":""a-z-word-list-term-collections/i/its-vs-its""}]},{""toc_title"":""J"",""children"":[{""toc_title"":""Java, JScript, JavaScript"",""href"":""a-z-word-list-term-collections/j/java-jscript-javascript""},{""toc_title"":""join"",""href"":""a-z-word-list-term-collections/j/join""},{""toc_title"":""joystick"",""href"":""a-z-word-list-term-collections/j/joystick""},{""toc_title"":""jump"",""href"":""a-z-word-list-term-collections/j/jump""},{""toc_title"":""justify, justified"",""href"":""a-z-word-list-term-collections/j/justify-justified""}]},{""toc_title"":""K"",""children"":[{""toc_title"":""Kerberos protocol"",""href"":""a-z-word-list-term-collections/k/kerberos-protocol""},{""toc_title"":""key combination"",""href"":""a-z-word-list-term-collections/k/key-combination""},{""toc_title"":""key sequence"",""href"":""a-z-word-list-term-collections/k/key-sequence""},{""toc_title"":""keyboard shortcut"",""href"":""a-z-word-list-term-collections/k/keyboard-shortcut""},{""toc_title"":""keypad"",""href"":""a-z-word-list-term-collections/k/keypad""},{""toc_title"":""keypress, keystroke"",""href"":""a-z-word-list-term-collections/k/keypress-keystroke""},{""toc_title"":""kilobit, Kbit"",""href"":""a-z-word-list-term-collections/k/kilobit""},{""toc_title"":""kilobits per second, Kbps"",""href"":""a-z-word-list-term-collections/k/kilobits-per-second""},{""toc_title"":""kilobyte, KB, K, K byte, Kbyte"",""href"":""a-z-word-list-term-collections/k/kilobyte""},{""toc_title"":""kilobytes per second, KBps"",""href"":""a-z-word-list-term-collections/k/kilobytes-per-second""},{""toc_title"":""kilohertz, KHz"",""href"":""a-z-word-list-term-collections/k/kilohertz""},{""toc_title"":""knowledge base, Knowledge Base"",""href"":""a-z-word-list-term-collections/k/knowledge-base""}]},{""toc_title"":""L"",""children"":[{""toc_title"":""labeled, labeling"",""href"":""a-z-word-list-term-collections/l/labeled-labeling""},{""toc_title"":""laptop"",""href"":""a-z-word-list-term-collections/l/laptop""},{""toc_title"":""later"",""href"":""a-z-word-list-term-collections/l/later""},{""toc_title"":""launch"",""href"":""a-z-word-list-term-collections/l/launch""},{""toc_title"":""lay out, laid out, layout"",""href"":""a-z-word-list-term-collections/l/lay-out-laid-out-layout""},{""toc_title"":""leading"",""href"":""a-z-word-list-term-collections/l/leading""},{""toc_title"":""leave"",""href"":""a-z-word-list-term-collections/l/leave""},{""toc_title"":""left, leftmost, left-hand"",""href"":""a-z-word-list-term-collections/l/left-leftmost-left-hand""},{""toc_title"":""left align, left-aligned"",""href"":""a-z-word-list-term-collections/l/left-align-left-aligned""},{""toc_title"":""left justify, left-justified"",""href"":""a-z-word-list-term-collections/l/left-justify-left-justified""},{""toc_title"":""left mouse button"",""href"":""a-z-word-list-term-collections/l/left-mouse-button""},{""toc_title"":""legacy"",""href"":""a-z-word-list-term-collections/l/legacy""},{""toc_title"":""legal"",""href"":""a-z-word-list-term-collections/l/legal""},{""toc_title"":""less vs. fewer vs. under"",""href"":""a-z-word-list-term-collections/l/less-vs-fewer-vs-under""},{""toc_title"":""let, lets"",""href"":""a-z-word-list-term-collections/l/let-lets""},{""toc_title"":""leverage"",""href"":""a-z-word-list-term-collections/l/leverage""},{""toc_title"":""license terms"",""href"":""a-z-word-list-term-collections/l/license-terms""},{""toc_title"":""-like"",""href"":""a-z-word-list-term-collections/l/like""},{""toc_title"":""line"",""href"":""a-z-word-list-term-collections/l/line""},{""toc_title"":""line of business, line-of-business"",""href"":""a-z-word-list-term-collections/l/line-of-business""},{""toc_title"":""link"",""href"":""a-z-word-list-term-collections/l/link""},{""toc_title"":""list box"",""href"":""a-z-word-list-term-collections/l/list-box""},{""toc_title"":""load"",""href"":""a-z-word-list-term-collections/l/load""},{""toc_title"":""lock"",""href"":""a-z-word-list-term-collections/l/lock""},{""toc_title"":""lock up"",""href"":""a-z-word-list-term-collections/l/lock-up""},{""toc_title"":""log on, log off"",""href"":""a-z-word-list-term-collections/l/log-on-log-off""},{""toc_title"":""lower"",""href"":""a-z-word-list-term-collections/l/lower""},{""toc_title"":""lower left, lower-left, lower right, lower-right"",""href"":""a-z-word-list-term-collections/l/lower-left-lower-right""},{""toc_title"":""lowercase"",""href"":""a-z-word-list-term-collections/l/lowercase""},{""toc_title"":""low-resolution"",""href"":""a-z-word-list-term-collections/l/low-resolution""}]},{""toc_title"":""M"",""children"":[{""toc_title"":""machine"",""href"":""a-z-word-list-term-collections/m/machine""},{""toc_title"":""machine learning"",""href"":""a-z-word-list-term-collections/m/machine-learning""},{""toc_title"":""main document"",""href"":""a-z-word-list-term-collections/m/main-document""},{""toc_title"":""makefile"",""href"":""a-z-word-list-term-collections/m/makefile""},{""toc_title"":""malicious code"",""href"":""a-z-word-list-term-collections/m/malicious-code""},{""toc_title"":""malicious user"",""href"":""a-z-word-list-term-collections/m/malicious-user""},{""toc_title"":""malware, malicious software"",""href"":""a-z-word-list-term-collections/m/malware-malicious-software""},{""toc_title"":""management information systems"",""href"":""a-z-word-list-term-collections/m/management-information-systems""},{""toc_title"":""manipulate"",""href"":""a-z-word-list-term-collections/m/manipulate""},{""toc_title"":""marquee"",""href"":""a-z-word-list-term-collections/m/marquee""},{""toc_title"":""master/slave, master/subordinate"",""href"":""a-z-word-list-term-collections/m/master-slave-master-subordinate""},{""toc_title"":""mathematical"",""href"":""a-z-word-list-term-collections/m/mathematical""},{""toc_title"":""matrix, matrices"",""href"":""a-z-word-list-term-collections/m/matrix-matrices""},{""toc_title"":""Maximize button, maximize"",""href"":""a-z-word-list-term-collections/m/maximize-button-maximize""},{""toc_title"":""medium, media"",""href"":""a-z-word-list-term-collections/m/medium-media""},{""toc_title"":""megabit, Mb, Mbit"",""href"":""a-z-word-list-term-collections/m/megabit""},{""toc_title"":""megabits per second, Mbps"",""href"":""a-z-word-list-term-collections/m/megabits-per-second""},{""toc_title"":""megabyte, MB, meg, M, M byte, Mbyte"",""href"":""a-z-word-list-term-collections/m/megabyte""},{""toc_title"":""megahertz, MHz"",""href"":""a-z-word-list-term-collections/m/megahertz""},{""toc_title"":""member function"",""href"":""a-z-word-list-term-collections/m/member-function""},{""toc_title"":""memory"",""href"":""a-z-word-list-term-collections/m/memory""},{""toc_title"":""memory-resident"",""href"":""a-z-word-list-term-collections/m/memory-resident""},{""toc_title"":""menu item"",""href"":""a-z-word-list-term-collections/m/menu-item""},{""toc_title"":""message"",""href"":""a-z-word-list-term-collections/m/message""},{""toc_title"":""metafile"",""href"":""a-z-word-list-term-collections/m/metafile""},{""toc_title"":""micro-"",""href"":""a-z-word-list-term-collections/m/micro""},{""toc_title"":""microprocessor"",""href"":""a-z-word-list-term-collections/m/microprocessor""},{""toc_title"":""Microsoft"",""href"":""a-z-word-list-term-collections/m/microsoft""},{""toc_title"":""Microsoft account"",""href"":""a-z-word-list-term-collections/m/microsoft-account""},{""toc_title"":""Microsoft AI"",""href"":""a-z-word-list-term-collections/m/microsoft-ai""},{""toc_title"":""Microsoft Software License Terms"",""href"":""a-z-word-list-term-collections/m/software-license-terms""},{""toc_title"":""Microsoft Store"",""href"":""a-z-word-list-term-collections/m/microsoft-store""},{""toc_title"":""midnight"",""href"":""a-z-word-list-term-collections/m/midnight""},{""toc_title"":""million, M"",""href"":""a-z-word-list-term-collections/m/million-m""},{""toc_title"":""Minimize button, minimize"",""href"":""a-z-word-list-term-collections/m/minimize-button-minimize""},{""toc_title"":""minus sign (–)"",""href"":""a-z-word-list-term-collections/m/minus-sign""},{""toc_title"":""MIP mapping"",""href"":""a-z-word-list-term-collections/m/mip-mapping""},{""toc_title"":""mission critical, mission-critical"",""href"":""a-z-word-list-term-collections/m/mission-critical""},{""toc_title"":""mixed reality, mixed-reality"",""href"":""a-z-word-list-term-collections/m/mixed-reality""},{""toc_title"":""mobile device, mobile phone"",""href"":""a-z-word-list-term-collections/m/mobile-device-mobile-phone""},{""toc_title"":""monitor"",""href"":""a-z-word-list-term-collections/m/monitor""},{""toc_title"":""monospace"",""href"":""a-z-word-list-term-collections/m/monospace""},{""toc_title"":""more than vs. over"",""href"":""a-z-word-list-term-collections/m/more-than-vs-over""},{""toc_title"":""mouse"",""href"":""a-z-word-list-term-collections/m/mouse""},{""toc_title"":""mouse over"",""href"":""a-z-word-list-term-collections/m/mouse-over""},{""toc_title"":""movable"",""href"":""a-z-word-list-term-collections/m/movable""},{""toc_title"":""move"",""href"":""a-z-word-list-term-collections/m/move""},{""toc_title"":""MPEG"",""href"":""a-z-word-list-term-collections/m/mpeg""},{""toc_title"":""multi-"",""href"":""a-z-word-list-term-collections/m/multi""},{""toc_title"":""multiple selection"",""href"":""a-z-word-list-term-collections/m/multiple-selection""},{""toc_title"":""multiplication sign (×)"",""href"":""a-z-word-list-term-collections/m/multiplication-sign""},{""toc_title"":""multitask, multitasking"",""href"":""a-z-word-list-term-collections/m/multitask-multitasking""},{""toc_title"":""multithreaded"",""href"":""a-z-word-list-term-collections/m/multithreaded""}]},{""toc_title"":""N"",""children"":[{""toc_title"":""n"",""href"":""a-z-word-list-term-collections/n/n""},{""toc_title"":""namespace"",""href"":""a-z-word-list-term-collections/n/namespace""},{""toc_title"":""nanosecond"",""href"":""a-z-word-list-term-collections/n/nanosecond""},{""toc_title"":""native language"",""href"":""a-z-word-list-term-collections/n/native-language""},{""toc_title"":""natural user interface, NUI"",""href"":""a-z-word-list-term-collections/n/natural-user-interface-nui""},{""toc_title"":""navigate"",""href"":""a-z-word-list-term-collections/n/navigate""},{""toc_title"":""need"",""href"":""a-z-word-list-term-collections/n/need""},{""toc_title"":"".NET"",""href"":""a-z-word-list-term-collections/n/net""},{""toc_title"":""network"",""href"":""a-z-word-list-term-collections/n/network""},{""toc_title"":""network adapter"",""href"":""a-z-word-list-term-collections/n/network-adapter""},{""toc_title"":""network administrator"",""href"":""a-z-word-list-term-collections/n/network-administrator""},{""toc_title"":""network connection"",""href"":""a-z-word-list-term-collections/n/network-connection""},{""toc_title"":""network drive"",""href"":""a-z-word-list-term-collections/n/network-drive""},{""toc_title"":""newsreader"",""href"":""a-z-word-list-term-collections/n/newsreader""},{""toc_title"":""non-"",""href"":""a-z-word-list-term-collections/n/non""},{""toc_title"":""nonadjacent selection"",""href"":""a-z-word-list-term-collections/n/nonadjacent-selection""},{""toc_title"":""noncontiguous selection"",""href"":""a-z-word-list-term-collections/n/noncontiguous-selection""},{""toc_title"":""nonprintable, nonprinting"",""href"":""a-z-word-list-term-collections/n/nonprintable-nonprinting""},{""toc_title"":""normal, normally"",""href"":""a-z-word-list-term-collections/n/normal-normally""},{""toc_title"":""notification"",""href"":""a-z-word-list-term-collections/n/notification""},{""toc_title"":""notification area"",""href"":""a-z-word-list-term-collections/n/notification-area""},{""toc_title"":""null, NULL, Null"",""href"":""a-z-word-list-term-collections/n/null""},{""toc_title"":""null-terminated, null-terminating"",""href"":""a-z-word-list-term-collections/n/null-terminated-null-terminating""},{""toc_title"":""number sign (#)"",""href"":""a-z-word-list-term-collections/n/number-sign""},{""toc_title"":""numeric"",""href"":""a-z-word-list-term-collections/n/numeric""}]},{""toc_title"":""O"",""children"":[{""toc_title"":""object"",""href"":""a-z-word-list-term-collections/o/object""},{""toc_title"":""obsolete"",""href"":""a-z-word-list-term-collections/o/obsolete""},{""toc_title"":""of"",""href"":""a-z-word-list-term-collections/o/of""},{""toc_title"":""offline"",""href"":""a-z-word-list-term-collections/o/offline""},{""toc_title"":""off-premises, on-premises"",""href"":""a-z-word-list-term-collections/o/off-premises-on-premises""},{""toc_title"":""OK, okay"",""href"":""a-z-word-list-term-collections/o/ok-okay""},{""toc_title"":""on"",""href"":""a-z-word-list-term-collections/o/on""},{""toc_title"":""on the fly"",""href"":""a-z-word-list-term-collections/o/on-the-fly""},{""toc_title"":""onboarding"",""href"":""a-z-word-list-term-collections/o/onboarding""},{""toc_title"":""once"",""href"":""a-z-word-list-term-collections/o/once""},{""toc_title"":""online"",""href"":""a-z-word-list-term-collections/o/online""},{""toc_title"":""online services"",""href"":""a-z-word-list-term-collections/o/online-services""},{""toc_title"":""on-screen"",""href"":""a-z-word-list-term-collections/o/on-screen""},{""toc_title"":""on-screen keyboard"",""href"":""a-z-word-list-term-collections/o/on-screen-keyboard""},{""toc_title"":""onto"",""href"":""a-z-word-list-term-collections/o/onto""},{""toc_title"":""opcode"",""href"":""a-z-word-list-term-collections/o/opcode""},{""toc_title"":""open"",""href"":""a-z-word-list-term-collections/o/open""},{""toc_title"":""open source, open-source"",""href"":""a-z-word-list-term-collections/o/open-source""},{""toc_title"":""operating environment, operating system"",""href"":""a-z-word-list-term-collections/o/operating-environment-operating-system""},{""toc_title"":""opt in, opt out"",""href"":""a-z-word-list-term-collections/o/opt-in-opt-out""},{""toc_title"":""option, option button"",""href"":""a-z-word-list-term-collections/o/option-button""},{""toc_title"":""org, organization"",""href"":""a-z-word-list-term-collections/o/org-organization""},{""toc_title"":""output"",""href"":""a-z-word-list-term-collections/o/output""},{""toc_title"":""outside"",""href"":""a-z-word-list-term-collections/o/outside""},{""toc_title"":""over"",""href"":""a-z-word-list-term-collections/o/over""},{""toc_title"":""overwrite"",""href"":""a-z-word-list-term-collections/o/overwrite""}]},{""toc_title"":""P"",""children"":[{""toc_title"":""page"",""href"":""a-z-word-list-term-collections/p/page""},{""toc_title"":""palette"",""href"":""a-z-word-list-term-collections/p/palette""},{""toc_title"":""pan"",""href"":""a-z-word-list-term-collections/p/pan""},{""toc_title"":""pane"",""href"":""a-z-word-list-term-collections/p/pane""},{""toc_title"":""parameter"",""href"":""a-z-word-list-term-collections/p/parameter""},{""toc_title"":""parent/child"",""href"":""a-z-word-list-term-collections/p/parent-child""},{""toc_title"":""parenthesis, parentheses"",""href"":""a-z-word-list-term-collections/p/parenthesis-parentheses""},{""toc_title"":""passwordless"",""href"":""a-z-word-list-term-collections/p/passwordless""},{""toc_title"":""path"",""href"":""a-z-word-list-term-collections/p/path""},{""toc_title"":""PC"",""href"":""a-z-word-list-term-collections/p/pc""},{""toc_title"":""p-code"",""href"":""a-z-word-list-term-collections/p/p-code""},{""toc_title"":""pen"",""href"":""a-z-word-list-term-collections/p/pen""},{""toc_title"":""per"",""href"":""a-z-word-list-term-collections/p/per""},{""toc_title"":""percent, percentage"",""href"":""a-z-word-list-term-collections/p/percent-percentage""},{""toc_title"":""perimeter network"",""href"":""a-z-word-list-term-collections/p/perimeter-network""},{""toc_title"":""peripheral"",""href"":""a-z-word-list-term-collections/p/peripheral""},{""toc_title"":""permissions"",""href"":""a-z-word-list-term-collections/p/permissions""},{""toc_title"":""personal digital assistant"",""href"":""a-z-word-list-term-collections/p/personal-digital-assistant""},{""toc_title"":""phone"",""href"":""a-z-word-list-term-collections/p/phone""},{""toc_title"":""photo"",""href"":""a-z-word-list-term-collections/p/photo""},{""toc_title"":""pin, unpin"",""href"":""a-z-word-list-term-collections/p/pin-unpin""},{""toc_title"":""pinch"",""href"":""a-z-word-list-term-collections/p/pinch""},{""toc_title"":""ping, PING"",""href"":""a-z-word-list-term-collections/p/ping-ping""},{""toc_title"":""pipe"",""href"":""a-z-word-list-term-collections/p/pipe""},{""toc_title"":""placeholder"",""href"":""a-z-word-list-term-collections/p/placeholder""},{""toc_title"":""plaintext, plain text"",""href"":""a-z-word-list-term-collections/p/plaintext-plain-text""},{""toc_title"":""platform"",""href"":""a-z-word-list-term-collections/p/platform""},{""toc_title"":""platform as a service (PaaS)"",""href"":""a-z-word-list-term-collections/p/platform-as-a-service""},{""toc_title"":""playlist"",""href"":""a-z-word-list-term-collections/p/playlist""},{""toc_title"":""please"",""href"":""a-z-word-list-term-collections/p/please""},{""toc_title"":""Plug and Play, plug and play"",""href"":""a-z-word-list-term-collections/p/plug-and-play""},{""toc_title"":""plug-in"",""href"":""a-z-word-list-term-collections/p/plug-in""},{""toc_title"":""plus sign (+)"",""href"":""a-z-word-list-term-collections/p/plus-sign""},{""toc_title"":""point to"",""href"":""a-z-word-list-term-collections/p/point-to""},{""toc_title"":""pointer"",""href"":""a-z-word-list-term-collections/p/pointer""},{""toc_title"":""pop-up"",""href"":""a-z-word-list-term-collections/p/pop-up""},{""toc_title"":""port"",""href"":""a-z-word-list-term-collections/p/port""},{""toc_title"":""postal code"",""href"":""a-z-word-list-term-collections/p/postal-code""},{""toc_title"":""pound key, pound sign (#)"",""href"":""a-z-word-list-term-collections/p/pound-key-pound-sign""},{""toc_title"":""power cord"",""href"":""a-z-word-list-term-collections/p/power-cord""},{""toc_title"":""power down, power up, power off, power on"",""href"":""a-z-word-list-term-collections/p/power-down-power-up-power-off-power-on""},{""toc_title"":""power user"",""href"":""a-z-word-list-term-collections/p/power-user""},{""toc_title"":""pre-"",""href"":""a-z-word-list-term-collections/p/pre""},{""toc_title"":""preceding"",""href"":""a-z-word-list-term-collections/p/preceding""},{""toc_title"":""press, press and hold"",""href"":""a-z-word-list-term-collections/p/press-and-hold""},{""toc_title"":""preview"",""href"":""a-z-word-list-term-collections/p/preview""},{""toc_title"":""print, printout"",""href"":""a-z-word-list-term-collections/p/print-printout""},{""toc_title"":""print queue, printer queue"",""href"":""a-z-word-list-term-collections/p/print-queue-printer-queue""},{""toc_title"":""private cloud, hosted private cloud"",""href"":""a-z-word-list-term-collections/p/private-cloud-hosted-private-cloud""},{""toc_title"":""privileges"",""href"":""a-z-word-list-term-collections/p/privileges""},{""toc_title"":""profile"",""href"":""a-z-word-list-term-collections/p/profile""},{""toc_title"":""program"",""href"":""a-z-word-list-term-collections/p/program""},{""toc_title"":""program file"",""href"":""a-z-word-list-term-collections/p/program-file""},{""toc_title"":""prompt"",""href"":""a-z-word-list-term-collections/p/prompt""},{""toc_title"":""prop"",""href"":""a-z-word-list-term-collections/p/prop""},{""toc_title"":""property"",""href"":""a-z-word-list-term-collections/p/property""},{""toc_title"":""property sheet, property page"",""href"":""a-z-word-list-term-collections/p/property-sheet-property-page""},{""toc_title"":""protected mode"",""href"":""a-z-word-list-term-collections/p/protected-mode""},{""toc_title"":""public cloud"",""href"":""a-z-word-list-term-collections/p/public-cloud""},{""toc_title"":""pull down, pull-down"",""href"":""a-z-word-list-term-collections/p/pull-down""},{""toc_title"":""purge"",""href"":""a-z-word-list-term-collections/p/purge""},{""toc_title"":""push button, push-button"",""href"":""a-z-word-list-term-collections/p/push-button""}]},{""toc_title"":""Q"",""children"":[{""toc_title"":""quality, high-quality"",""href"":""a-z-word-list-term-collections/q/quality-high-quality""},{""toc_title"":""quit"",""href"":""a-z-word-list-term-collections/q/quit""}]},{""toc_title"":""R"",""children"":[{""toc_title"":""radio button"",""href"":""a-z-word-list-term-collections/r/radio-button""},{""toc_title"":""ragged right"",""href"":""a-z-word-list-term-collections/r/ragged-right""},{""toc_title"":""RAM"",""href"":""a-z-word-list-term-collections/r/ram""},{""toc_title"":""range selection"",""href"":""a-z-word-list-term-collections/r/range-selection""},{""toc_title"":""re-"",""href"":""a-z-word-list-term-collections/r/re""},{""toc_title"":""read-only"",""href"":""a-z-word-list-term-collections/r/read-only""},{""toc_title"":""read/write, read/write permission"",""href"":""a-z-word-list-term-collections/r/read-write-read-write-permission""},{""toc_title"":""real time, real-time"",""href"":""a-z-word-list-term-collections/r/real-time""},{""toc_title"":""reboot"",""href"":""a-z-word-list-term-collections/r/reboot""},{""toc_title"":""recommend"",""href"":""a-z-word-list-term-collections/r/recommend""},{""toc_title"":""Recycle Bin, recycle bin"",""href"":""a-z-word-list-term-collections/r/recycle-bin""},{""toc_title"":""refresh"",""href"":""a-z-word-list-term-collections/r/refresh""},{""toc_title"":""registry, registry settings"",""href"":""a-z-word-list-term-collections/r/registry-registry-settings""},{""toc_title"":""reinitialize"",""href"":""a-z-word-list-term-collections/r/reinitialize""},{""toc_title"":""relationship chatbot"",""href"":""a-z-word-list-term-collections/r/relationship-chatbot""},{""toc_title"":""REM statement"",""href"":""a-z-word-list-term-collections/r/rem-statement""},{""toc_title"":""remote"",""href"":""a-z-word-list-term-collections/r/remote""},{""toc_title"":""remove"",""href"":""a-z-word-list-term-collections/r/remove""},{""toc_title"":""replace"",""href"":""a-z-word-list-term-collections/r/replace""},{""toc_title"":""restart"",""href"":""a-z-word-list-term-collections/r/restart""},{""toc_title"":""restore"",""href"":""a-z-word-list-term-collections/r/restore""},{""toc_title"":""reverse video"",""href"":""a-z-word-list-term-collections/r/reverse-video""},{""toc_title"":""right, rightmost, right-hand"",""href"":""a-z-word-list-term-collections/r/right-rightmost-right-hand""},{""toc_title"":""right align, right-aligned"",""href"":""a-z-word-list-term-collections/r/right-align-right-aligned""},{""toc_title"":""right justify, right-justified"",""href"":""a-z-word-list-term-collections/r/right-justify-right-justified""},{""toc_title"":""right mouse button"",""href"":""a-z-word-list-term-collections/r/right-mouse-button""},{""toc_title"":""right-click"",""href"":""a-z-word-list-term-collections/r/right-click""},{""toc_title"":""rights"",""href"":""a-z-word-list-term-collections/r/rights""},{""toc_title"":""ROM"",""href"":""a-z-word-list-term-collections/r/rom""},{""toc_title"":""Roman"",""href"":""a-z-word-list-term-collections/r/roman""},{""toc_title"":""root directory"",""href"":""a-z-word-list-term-collections/r/root-directory""},{""toc_title"":""rotate"",""href"":""a-z-word-list-term-collections/r/rotate""},{""toc_title"":""run vs. execute"",""href"":""a-z-word-list-term-collections/r/run-vs-execute""},{""toc_title"":""running foot, running head"",""href"":""a-z-word-list-term-collections/r/running-foot-running-head""},{""toc_title"":""runs vs. runs on"",""href"":""a-z-word-list-term-collections/r/runs-vs-runs-on""},{""toc_title"":""runtime"",""href"":""a-z-word-list-term-collections/r/runtime""}]},{""toc_title"":""S"",""children"":[{""toc_title"":""(s), (es)"",""href"":""a-z-word-list-term-collections/s/s-es""},{""toc_title"":""sample vs. preview"",""href"":""a-z-word-list-term-collections/s/sample-vs-preview""},{""toc_title"":""save"",""href"":""a-z-word-list-term-collections/s/save""},{""toc_title"":""scan line"",""href"":""a-z-word-list-term-collections/s/scan-line""},{""toc_title"":""screen"",""href"":""a-z-word-list-term-collections/s/screen""},{""toc_title"":""screen resolution"",""href"":""a-z-word-list-term-collections/s/screen-resolution""},{""toc_title"":""screened subnet"",""href"":""a-z-word-list-term-collections/s/screened-subnet""},{""toc_title"":""screenshot"",""href"":""a-z-word-list-term-collections/s/screenshot""},{""toc_title"":""script, scriptlet"",""href"":""a-z-word-list-term-collections/s/script-scriptlet""},{""toc_title"":""scroll"",""href"":""a-z-word-list-term-collections/s/scroll""},{""toc_title"":""scroll bar, scroll arrow, scroll box"",""href"":""a-z-word-list-term-collections/s/scroll-bar-scroll-arrow-scroll-box""},{""toc_title"":""search, search and replace"",""href"":""a-z-word-list-term-collections/s/search-and-replace""},{""toc_title"":""search box"",""href"":""a-z-word-list-term-collections/s/search-box""},{""toc_title"":""secondary menu"",""href"":""a-z-word-list-term-collections/s/secondary-menu""},{""toc_title"":""select"",""href"":""a-z-word-list-term-collections/s/select""},{""toc_title"":""server"",""href"":""a-z-word-list-term-collections/s/server""},{""toc_title"":""service-level agreement (SLA)"",""href"":""a-z-word-list-term-collections/s/service-level-agreement-sla""},{""toc_title"":""service-oriented architecture (SOA)"",""href"":""a-z-word-list-term-collections/s/service-oriented-architecture-soa""},{""toc_title"":""set, specify"",""href"":""a-z-word-list-term-collections/s/set-specify""},{""toc_title"":""set up, setup, Setup"",""href"":""a-z-word-list-term-collections/s/set-up-setup""},{""toc_title"":""setting, value"",""href"":""a-z-word-list-term-collections/s/setting-value""},{""toc_title"":""set-top box"",""href"":""a-z-word-list-term-collections/s/set-top-box""},{""toc_title"":""shaded"",""href"":""a-z-word-list-term-collections/s/shaded""},{""toc_title"":""shell"",""href"":""a-z-word-list-term-collections/s/shell""},{""toc_title"":""ship"",""href"":""a-z-word-list-term-collections/s/ship""},{""toc_title"":""shortcut, shortcut menu"",""href"":""a-z-word-list-term-collections/s/shortcut-shortcut-menu""},{""toc_title"":""should vs. must"",""href"":""a-z-word-list-term-collections/s/should-vs-must""},{""toc_title"":""shut down, shutdown"",""href"":""a-z-word-list-term-collections/s/shut-down-shutdown""},{""toc_title"":""sign in, sign out"",""href"":""a-z-word-list-term-collections/s/sign-in-sign-out""},{""toc_title"":""simply"",""href"":""a-z-word-list-term-collections/s/simply""},{""toc_title"":""single sign-on (SSO)"",""href"":""a-z-word-list-term-collections/s/single-sign-on-sso""},{""toc_title"":""site"",""href"":""a-z-word-list-term-collections/s/site""},{""toc_title"":""site map"",""href"":""a-z-word-list-term-collections/s/site-map""},{""toc_title"":""size, resize"",""href"":""a-z-word-list-term-collections/s/size-resize""},{""toc_title"":""sleep"",""href"":""a-z-word-list-term-collections/s/sleep""},{""toc_title"":""slider"",""href"":""a-z-word-list-term-collections/s/slider""},{""toc_title"":""slideshow"",""href"":""a-z-word-list-term-collections/s/slideshow""},{""toc_title"":""small caps"",""href"":""a-z-word-list-term-collections/s/small-caps""},{""toc_title"":""smart card, Smart Card"",""href"":""a-z-word-list-term-collections/s/smart-card""},{""toc_title"":""smartphone"",""href"":""a-z-word-list-term-collections/s/smartphone""},{""toc_title"":""snap-in"",""href"":""a-z-word-list-term-collections/s/snap-in""},{""toc_title"":""social chatbot"",""href"":""a-z-word-list-term-collections/s/social-chatbot""},{""toc_title"":""soft copy"",""href"":""a-z-word-list-term-collections/s/soft-copy""},{""toc_title"":""software as a service (SaaS)"",""href"":""a-z-word-list-term-collections/s/software-as-a-service-saas""},{""toc_title"":""software-plus-services"",""href"":""a-z-word-list-term-collections/s/software-plus-services""},{""toc_title"":""sorry"",""href"":""a-z-word-list-term-collections/s/sorry""},{""toc_title"":""spam"",""href"":""a-z-word-list-term-collections/s/spam""},{""toc_title"":""specification"",""href"":""a-z-word-list-term-collections/s/specification""},{""toc_title"":""spell checker"",""href"":""a-z-word-list-term-collections/s/spell-checker""},{""toc_title"":""spin box"",""href"":""a-z-word-list-term-collections/s/spin-box""},{""toc_title"":""split bar, split box"",""href"":""a-z-word-list-term-collections/s/split-bar-split-box""},{""toc_title"":""spoofing"",""href"":""a-z-word-list-term-collections/s/spoofing""},{""toc_title"":""spreadsheet vs. workbook"",""href"":""a-z-word-list-term-collections/s/spreadsheet-vs-workbook""},{""toc_title"":""spyware"",""href"":""a-z-word-list-term-collections/s/spyware""},{""toc_title"":""SQL, SQL Server"",""href"":""a-z-word-list-term-collections/s/sql-sql-server""},{""toc_title"":""start, restart"",""href"":""a-z-word-list-term-collections/s/start-restart""},{""toc_title"":""Start button, Start menu"",""href"":""a-z-word-list-term-collections/s/start-button-start-menu""},{""toc_title"":""start page"",""href"":""a-z-word-list-term-collections/s/start-page""},{""toc_title"":""start up, startup"",""href"":""a-z-word-list-term-collections/s/start-up-startup""},{""toc_title"":""status bar"",""href"":""a-z-word-list-term-collections/s/status-bar""},{""toc_title"":""stop, stop responding"",""href"":""a-z-word-list-term-collections/s/stop-stop-responding""},{""toc_title"":""storage, storage device"",""href"":""a-z-word-list-term-collections/s/storage-storage-device""},{""toc_title"":""store, marketplace, gallery"",""href"":""a-z-word-list-term-collections/s/store-marketplace-gallery""},{""toc_title"":""stream, streaming"",""href"":""a-z-word-list-term-collections/s/stream-streaming""},{""toc_title"":""stretch"",""href"":""a-z-word-list-term-collections/s/stretch""},{""toc_title"":""struct, structure"",""href"":""a-z-word-list-term-collections/s/struct-structure""},{""toc_title"":""style sheet"",""href"":""a-z-word-list-term-collections/s/style-sheet""},{""toc_title"":""sub-"",""href"":""a-z-word-list-term-collections/s/sub""},{""toc_title"":""subaddress"",""href"":""a-z-word-list-term-collections/s/subaddress""},{""toc_title"":""subclass"",""href"":""a-z-word-list-term-collections/s/subclass""},{""toc_title"":""surf"",""href"":""a-z-word-list-term-collections/s/surf""},{""toc_title"":""swipe"",""href"":""a-z-word-list-term-collections/s/swipe""},{""toc_title"":""switch"",""href"":""a-z-word-list-term-collections/s/switch""},{""toc_title"":""symbol"",""href"":""a-z-word-list-term-collections/s/symbol""},{""toc_title"":""sync"",""href"":""a-z-word-list-term-collections/s/sync""},{""toc_title"":""system administrator"",""href"":""a-z-word-list-term-collections/s/system-administrator""},{""toc_title"":""system prompt"",""href"":""a-z-word-list-term-collections/s/system-prompt""},{""toc_title"":""system software"",""href"":""a-z-word-list-term-collections/s/system-software""},{""toc_title"":""system tray"",""href"":""a-z-word-list-term-collections/s/system-tray""}]},{""toc_title"":""T"",""children"":[{""toc_title"":""tab"",""href"":""a-z-word-list-term-collections/t/tab""},{""toc_title"":""table of contents"",""href"":""a-z-word-list-term-collections/t/table-of-contents""},{""toc_title"":""tablet"",""href"":""a-z-word-list-term-collections/t/tablet""},{""toc_title"":""tap, double-tap, tap and hold"",""href"":""a-z-word-list-term-collections/t/tap-double-tap-tap-and-hold""},{""toc_title"":""target drive, target file"",""href"":""a-z-word-list-term-collections/t/target-drive-target-file""},{""toc_title"":""taskbar"",""href"":""a-z-word-list-term-collections/t/taskbar""},{""toc_title"":""terabyte, TB"",""href"":""a-z-word-list-term-collections/t/terabyte""},{""toc_title"":""terminate"",""href"":""a-z-word-list-term-collections/t/terminate""},{""toc_title"":""text, text message"",""href"":""a-z-word-list-term-collections/t/text-text-message""},{""toc_title"":""text box"",""href"":""a-z-word-list-term-collections/t/text-box""},{""toc_title"":""thanks, thank you"",""href"":""a-z-word-list-term-collections/t/thanks-thank-you""},{""toc_title"":""that vs. which"",""href"":""a-z-word-list-term-collections/t/that-vs-which""},{""toc_title"":""thousand, K"",""href"":""a-z-word-list-term-collections/t/thousand-k""},{""toc_title"":""tile, Live Tile"",""href"":""a-z-word-list-term-collections/t/tile-live-tile""},{""toc_title"":""time out, time-out"",""href"":""a-z-word-list-term-collections/t/time-out""},{""toc_title"":""time stamp"",""href"":""a-z-word-list-term-collections/t/time-stamp""},{""toc_title"":""toast"",""href"":""a-z-word-list-term-collections/t/toast""},{""toc_title"":""to-do"",""href"":""a-z-word-list-term-collections/t/to-do""},{""toc_title"":""toggle"",""href"":""a-z-word-list-term-collections/t/toggle""},{""toc_title"":""tone"",""href"":""a-z-word-list-term-collections/t/tone""},{""toc_title"":""tool"",""href"":""a-z-word-list-term-collections/t/tool""},{""toc_title"":""toolkit"",""href"":""a-z-word-list-term-collections/t/toolkit""},{""toc_title"":""top left, top right"",""href"":""a-z-word-list-term-collections/t/top-left-top-right""},{""toc_title"":""top-level folder"",""href"":""a-z-word-list-term-collections/t/top-level-folder""},{""toc_title"":""touchpad"",""href"":""a-z-word-list-term-collections/t/touchpad""},{""toc_title"":""touchscreen"",""href"":""a-z-word-list-term-collections/t/touchscreen""},{""toc_title"":""toward"",""href"":""a-z-word-list-term-collections/t/toward""},{""toc_title"":""trackball"",""href"":""a-z-word-list-term-collections/t/trackball""},{""toc_title"":""trailing"",""href"":""a-z-word-list-term-collections/t/trailing""},{""toc_title"":""trojan horse, trojan"",""href"":""a-z-word-list-term-collections/t/trojan-horse-trojan""},{""toc_title"":""turn on, turn off"",""href"":""a-z-word-list-term-collections/t/turn-on-turn-off""},{""toc_title"":""turnkey"",""href"":""a-z-word-list-term-collections/t/turnkey""},{""toc_title"":""type"",""href"":""a-z-word-list-term-collections/t/type""}]},{""toc_title"":""U"",""children"":[{""toc_title"":""UK"",""href"":""a-z-word-list-term-collections/u/uk""},{""toc_title"":""Ultrabook"",""href"":""a-z-word-list-term-collections/u/ultrabook""},{""toc_title"":""un-"",""href"":""a-z-word-list-term-collections/u/un""},{""toc_title"":""unavailable"",""href"":""a-z-word-list-term-collections/u/unavailable""},{""toc_title"":""uncheck, unmark, unselect"",""href"":""a-z-word-list-term-collections/u/uncheck-unmark-unselect""},{""toc_title"":""undelete"",""href"":""a-z-word-list-term-collections/u/undelete""},{""toc_title"":""underline vs. underscore"",""href"":""a-z-word-list-term-collections/u/underline-vs-underscore""},{""toc_title"":""undo"",""href"":""a-z-word-list-term-collections/u/undo""},{""toc_title"":""uninstall"",""href"":""a-z-word-list-term-collections/u/uninstall""},{""toc_title"":""unregister"",""href"":""a-z-word-list-term-collections/u/unregister""},{""toc_title"":""unwanted software"",""href"":""a-z-word-list-term-collections/u/unwanted-software""},{""toc_title"":""upgrade"",""href"":""a-z-word-list-term-collections/u/upgrade""},{""toc_title"":""upload"",""href"":""a-z-word-list-term-collections/u/upload""},{""toc_title"":""UPnP"",""href"":""a-z-word-list-term-collections/u/upnp""},{""toc_title"":""upper left, upper right"",""href"":""a-z-word-list-term-collections/u/upper-left-upper-right""},{""toc_title"":""uppercase"",""href"":""a-z-word-list-term-collections/u/uppercase""},{""toc_title"":""upsize"",""href"":""a-z-word-list-term-collections/u/upsize""},{""toc_title"":""upward"",""href"":""a-z-word-list-term-collections/u/upward""},{""toc_title"":""URL"",""href"":""a-z-word-list-term-collections/u/url""},{""toc_title"":""US"",""href"":""a-z-word-list-term-collections/u/us""},{""toc_title"":""usable"",""href"":""a-z-word-list-term-collections/u/usable""},{""toc_title"":""USB"",""href"":""a-z-word-list-term-collections/u/usb""},{""toc_title"":""use terms"",""href"":""a-z-word-list-term-collections/u/use-terms""},{""toc_title"":""user, end user"",""href"":""a-z-word-list-term-collections/u/user-end-user""},{""toc_title"":""user rights"",""href"":""a-z-word-list-term-collections/u/user-rights""},{""toc_title"":""using, by using, with"",""href"":""a-z-word-list-term-collections/u/using-by-using-with""},{""toc_title"":""utility"",""href"":""a-z-word-list-term-collections/u/utility""}]},{""toc_title"":""V"",""children"":[{""toc_title"":""value axis"",""href"":""a-z-word-list-term-collections/v/value-axis""},{""toc_title"":""versus, vs."",""href"":""a-z-word-list-term-collections/v/versus-vs""},{""toc_title"":""video call, videoconference"",""href"":""a-z-word-list-term-collections/v/video-call-videoconference""},{""toc_title"":""video card"",""href"":""a-z-word-list-term-collections/v/video-card""},{""toc_title"":""video display"",""href"":""a-z-word-list-term-collections/v/video-display""},{""toc_title"":""video driver"",""href"":""a-z-word-list-term-collections/v/video-driver""},{""toc_title"":""video game, video-game"",""href"":""a-z-word-list-term-collections/v/video-game""},{""toc_title"":""virtual"",""href"":""a-z-word-list-term-collections/v/virtual""},{""toc_title"":""virtual agent"",""href"":""a-z-word-list-term-collections/v/virtual-agent""},{""toc_title"":""virtualize"",""href"":""a-z-word-list-term-collections/v/virtualize""},{""toc_title"":""visit"",""href"":""a-z-word-list-term-collections/v/visit""},{""toc_title"":""voice user interface (VUI)"",""href"":""a-z-word-list-term-collections/v/voice-user-interface-vui""},{""toc_title"":""voice-activated device"",""href"":""a-z-word-list-term-collections/v/voice-activated-device""},{""toc_title"":""voicemail"",""href"":""a-z-word-list-term-collections/v/voicemail""},{""toc_title"":""vulnerability"",""href"":""a-z-word-list-term-collections/v/vulnerability""}]},{""toc_title"":""W"",""children"":[{""toc_title"":""W3C"",""href"":""a-z-word-list-term-collections/w/w3c""},{""toc_title"":""want"",""href"":""a-z-word-list-term-collections/w/want""},{""toc_title"":""we"",""href"":""a-z-word-list-term-collections/w/we""},{""toc_title"":""wearable, wearable device"",""href"":""a-z-word-list-term-collections/w/wearable-wearable-device""},{""toc_title"":""web, World Wide Web, WWW"",""href"":""a-z-word-list-term-collections/w/web-world-wide-web-www""},{""toc_title"":""web services"",""href"":""a-z-word-list-term-collections/w/web-services""},{""toc_title"":""where"",""href"":""a-z-word-list-term-collections/w/where""},{""toc_title"":""while"",""href"":""a-z-word-list-term-collections/w/while""},{""toc_title"":""white hat hacker"",""href"":""a-z-word-list-term-collections/w/white-hat-hacker""},{""toc_title"":""white paper"",""href"":""a-z-word-list-term-collections/w/white-paper""},{""toc_title"":""white space"",""href"":""a-z-word-list-term-collections/w/white-space""},{""toc_title"":""whitelist"",""href"":""a-z-word-list-term-collections/w/whitelist""},{""toc_title"":""who vs. that"",""href"":""a-z-word-list-term-collections/w/who-vs-that""},{""toc_title"":""Wi-Fi"",""href"":""a-z-word-list-term-collections/w/wi-fi""},{""toc_title"":""wildcard character"",""href"":""a-z-word-list-term-collections/w/wildcard-character""},{""toc_title"":""window"",""href"":""a-z-word-list-term-collections/w/window""},{""toc_title"":""Windows, Windows-based"",""href"":""a-z-word-list-term-collections/w/windows-windows-based""},{""toc_title"":""Windows 7, Windows 8, Windows 10"",""href"":""a-z-word-list-term-collections/w/windows-7-windows-8-windows-10""},{""toc_title"":""Windows Explorer"",""href"":""a-z-word-list-term-collections/w/windows-explorer""},{""toc_title"":""wireframe"",""href"":""a-z-word-list-term-collections/w/wireframe""},{""toc_title"":""wireless"",""href"":""a-z-word-list-term-collections/w/wireless""},{""toc_title"":""wizard"",""href"":""a-z-word-list-term-collections/w/wizard""},{""toc_title"":""word processing, word-processing"",""href"":""a-z-word-list-term-collections/w/word-processing""},{""toc_title"":""wordwrap, wordwrapping"",""href"":""a-z-word-list-term-collections/w/wordwrap-wordwrapping""},{""toc_title"":""work area, workspace"",""href"":""a-z-word-list-term-collections/w/work-area-workspace""},{""toc_title"":""work style"",""href"":""a-z-word-list-term-collections/w/work-style""},{""toc_title"":""workgroup"",""href"":""a-z-word-list-term-collections/w/workgroup""},{""toc_title"":""working memory"",""href"":""a-z-word-list-term-collections/w/working-memory""},{""toc_title"":""workstation"",""href"":""a-z-word-list-term-collections/w/workstation""},{""toc_title"":""worldwide vs. international"",""href"":""a-z-word-list-term-collections/w/worldwide-vs-international""},{""toc_title"":""write-only"",""href"":""a-z-word-list-term-collections/w/write-only""},{""toc_title"":""write-protect, write-protected"",""href"":""a-z-word-list-term-collections/w/write-protect-write-protected""}]},{""toc_title"":""X"",""children"":[{""toc_title"":""x"",""href"":""a-z-word-list-term-collections/x/x""},{""toc_title"":""x-axis"",""href"":""a-z-word-list-term-collections/x/x-axis""},{""toc_title"":""x-coordinate"",""href"":""a-z-word-list-term-collections/x/x-coordinate""},{""toc_title"":""XON/XOFF"",""href"":""a-z-word-list-term-collections/x/xon-xoff""}]},{""toc_title"":""Y"",""children"":[{""toc_title"":""y-axis"",""href"":""a-z-word-list-term-collections/y/y-axis""},{""toc_title"":""y-coordinate"",""href"":""a-z-word-list-term-collections/y/y-coordinate""}]},{""toc_title"":""Z"",""children"":[{""toc_title"":""z-"",""href"":""a-z-word-list-term-collections/z/z""},{""toc_title"":""z-axis"",""href"":""a-z-word-list-term-collections/z/z-axis""},{""toc_title"":""zero, zeros"",""href"":""a-z-word-list-term-collections/z/zero-zeros""},{""toc_title"":""ZIP Code"",""href"":""a-z-word-list-term-collections/z/zip-code""},{""toc_title"":""zoom in, zoom out"",""href"":""a-z-word-list-term-collections/z/zoom-in-zoom-out""}]}]},{""toc_title"":""Accessibility guidelines and requirements"",""href"":""accessibility/accessibility-guidelines-requirements"",""children"":[{""toc_title"":""Writing for all abilities"",""href"":""accessibility/writing-all-abilities""},{""toc_title"":""Colors and patterns in text, graphics, and design"",""href"":""accessibility/colors-patterns-text-graphics-design""},{""toc_title"":""Graphics, design, and media"",""href"":""accessibility/graphics-design-media""}]},{""toc_title"":""Acronyms"",""href"":""acronyms""},{""toc_title"":""Bias-free communication"",""href"":""bias-free-communication""},{""toc_title"":""Capitalization"",""href"":""capitalization""},{""toc_title"":""Chatbots and virtual agents"",""href"":""chatbots-virtual-agents/"",""children"":[{""toc_title"":""Structural and technical considerations"",""href"":""chatbots-virtual-agents/structural-technical-considerations""},{""toc_title"":""Writing for bots"",""href"":""chatbots-virtual-agents/writing-bots""},{""toc_title"":""Care and feeding of the bot"",""href"":""chatbots-virtual-agents/care-feeding-bot""}]},{""toc_title"":""Content planning"",""href"":""content-planning""},{""toc_title"":""Design planning"",""href"":""design-planning""},{""toc_title"":""Developer content"",""href"":""developer-content/"",""children"":[{""toc_title"":""Reference documentation"",""href"":""developer-content/reference-documentation""},{""toc_title"":""Code examples"",""href"":""developer-content/code-examples""},{""toc_title"":""Formatting developer text elements"",""href"":""developer-content/formatting-developer-text-elements""}]},{""toc_title"":""Final publishing review"",""href"":""final-publishing-review""},{""toc_title"":""Global communications"",""href"":""global-communications/"",""children"":[{""toc_title"":""Art"",""href"":""global-communications/art""},{""toc_title"":""Currency"",""href"":""global-communications/currency""},{""toc_title"":""Examples and scenarios"",""href"":""global-communications/examples-scenarios""},{""toc_title"":""Names and contact information"",""href"":""global-communications/names-contact-information""},{""toc_title"":""Time and place"",""href"":""global-communications/time-place""},{""toc_title"":""Web, software, and HTML considerations"",""href"":""global-communications/web-software-html-considerations""},{""toc_title"":""Writing tips"",""href"":""global-communications/writing-tips""}]},{""toc_title"":""Grammar and parts of speech"",""href"":""grammar/grammar-and-parts-of-speech"",""children"":[{""toc_title"":""Verbs"",""href"":""grammar/verbs""},{""toc_title"":""Person"",""href"":""grammar/person""},{""toc_title"":""Nouns and pronouns"",""href"":""grammar/nouns-pronouns""},{""toc_title"":""Words ending in -ing"",""href"":""grammar/ing-words""},{""toc_title"":""Prepositions"",""href"":""grammar/prepositions""},{""toc_title"":""Dangling and misplaced modifiers"",""href"":""grammar/dangling-misplaced-modifiers""}]},{""toc_title"":""Numbers"",""href"":""numbers""},{""toc_title"":""Procedures and instructions"",""href"":""procedures-instructions/"",""children"":[{""toc_title"":""Writing step-by-step instructions"",""href"":""procedures-instructions/writing-step-by-step-instructions""},{""toc_title"":""Describing interactions with UI"",""href"":""procedures-instructions/describing-interactions-with-ui""},{""toc_title"":""Describing alternative input methods"",""href"":""procedures-instructions/describing-alternative-input-methods""},{""toc_title"":""Formatting text in instructions"",""href"":""procedures-instructions/formatting-text-in-instructions""},{""toc_title"":""Illustrating network traffic flows"",""href"":""procedures-instructions/illustrating-network-traffic-flows""}]},{""toc_title"":""Punctuation"",""href"":""punctuation/"",""children"":[{""toc_title"":""Formatting punctuation"",""href"":""punctuation/formatting-punctuation""},{""toc_title"":""Apostrophes"",""href"":""punctuation/apostrophes""},{""toc_title"":""Colons"",""href"":""punctuation/colons""},{""toc_title"":""Commas"",""href"":""punctuation/commas""},{""toc_title"":""Dashes and hyphens"",""href"":""punctuation/dashes-hyphens/"",""children"":[{""toc_title"":""Em dashes"",""href"":""punctuation/dashes-hyphens/emes""},{""toc_title"":""En dashes"",""href"":""punctuation/dashes-hyphens/enes""},{""toc_title"":""Hyphens"",""href"":""punctuation/dashes-hyphens/hyphens""}]},{""toc_title"":""Ellipses"",""href"":""punctuation/ellipses""},{""toc_title"":""Exclamation points"",""href"":""punctuation/exclamation-points""},{""toc_title"":""Periods"",""href"":""punctuation/periods""},{""toc_title"":""Question marks"",""href"":""punctuation/question-marks""},{""toc_title"":""Quotation marks"",""href"":""punctuation/quotation-marks""},{""toc_title"":""Semicolons"",""href"":""punctuation/semicolons""},{""toc_title"":""Slashes"",""href"":""punctuation/slashes""}]},{""toc_title"":""Responsive content"",""href"":""responsive-content""},{""toc_title"":""Scannable content"",""href"":""scannable-content/"",""children"":[{""toc_title"":""Headings"",""href"":""scannable-content/headings""},{""toc_title"":""Lists"",""href"":""scannable-content/lists""},{""toc_title"":""Pull quotes"",""href"":""scannable-content/pull-quotes""},{""toc_title"":""Sidebars"",""href"":""scannable-content/sidebars""},{""toc_title"":""Tables"",""href"":""scannable-content/tables""}]},{""toc_title"":""Search and writing"",""href"":""search-writing""},{""toc_title"":""Text formatting"",""href"":""text-formatting/"",""children"":[{""toc_title"":""Using type"",""href"":""text-formatting/using-type/"",""children"":[{""toc_title"":""Use sentence-style capitalization"",""href"":""text-formatting/using-type/use-sentence-style-capitalization""},{""toc_title"":""Use left alignment"",""href"":""text-formatting/using-type/use-left-alignment""},{""toc_title"":""Don't compress line spacing"",""href"":""text-formatting/using-type/dont-compress-line-spacing""}]},{""toc_title"":""Formatting common text elements"",""href"":""text-formatting/formatting-common-text-elements""},{""toc_title"":""Formatting titles"",""href"":""text-formatting/formatting-titles""}]},{""toc_title"":""URLs and web addresses"",""href"":""urls-web-addresses""},{""toc_title"":""Word choice"",""href"":""word-choice/"",""children"":[{""toc_title"":""Use contractions"",""href"":""word-choice/use-contractions""},{""toc_title"":""Use simple words, concise sentences"",""href"":""word-choice/use-simple-words-concise-sentences""},{""toc_title"":""Don't use common words in new ways"",""href"":""word-choice/dont-use-common-words-in-new-ways""},{""toc_title"":""Use technical terms carefully"",""href"":""word-choice/use-technical-terms-carefully""},{""toc_title"":""Avoid jargon"",""href"":""word-choice/avoid-jargon""},{""toc_title"":""Use US spelling and avoid non-English words"",""href"":""word-choice/use-us-spelling-avoid-non-english-words""}]}]}"; RegexOptions options = RegexOptions.Multiline; Regex regex = new Regex(pattern, options); string result = regex.Replace(input, substitution); } }

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx