From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Angus Comber Newsgroups: gmane.emacs.help Subject: How to insert a string every 2 characters Date: Sat, 22 Aug 2015 14:37:39 +0100 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1440250675 18986 80.91.229.3 (22 Aug 2015 13:37:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 22 Aug 2015 13:37:55 +0000 (UTC) To: Emacs Help Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Aug 22 15:37:55 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZT8za-00086d-61 for geh-help-gnu-emacs@m.gmane.org; Sat, 22 Aug 2015 15:37:54 +0200 Original-Received: from localhost ([::1]:46614 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZT8zZ-00014X-FG for geh-help-gnu-emacs@m.gmane.org; Sat, 22 Aug 2015 09:37:53 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:57675) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZT8zO-000136-3x for help-gnu-emacs@gnu.org; Sat, 22 Aug 2015 09:37:42 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZT8zN-0004Ni-0U for help-gnu-emacs@gnu.org; Sat, 22 Aug 2015 09:37:42 -0400 Original-Received: from mail-wi0-x22c.google.com ([2a00:1450:400c:c05::22c]:32886) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZT8zM-0004MY-P1 for help-gnu-emacs@gnu.org; Sat, 22 Aug 2015 09:37:40 -0400 Original-Received: by wijp15 with SMTP id p15so40194013wij.0 for ; Sat, 22 Aug 2015 06:37:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=m484c8QGaLsYAr9eBUlJYpfpC7fJZ2cS7ON2Ghp6gOA=; b=quvWtnTEcZ3M6aKJE38DZFc73V3O+m432x6C/vaLfTyOt+TzJxchyRmnCVEWxf+XQ7 du8VkgXA7Tw3kANzuUnKylUHVfSKy5moWcG16kst32TyXrFRMjP1XWs1T1Z4FxKVuJm8 cthtsieOh4Vu6913kFcC9ATj9G6DyUygqMRvu1O4BsjZGzTiUXrVKlq+tHdlrPc8Zhss jbFXrCM0Zs0I8zVp3NyjuM8LjxwIKY8pO/RApLW9HkFIm3W1vYrP0BHnY+YENsODpjgp 7EMPD2RlPTG61nwlX4Gg4/6RlgwTpGTSC7IfG3r+d/zCWXohcpmPeoEFqn8htMbUmEjd A4fQ== X-Received: by 10.180.19.65 with SMTP id c1mr14783283wie.15.1440250659216; Sat, 22 Aug 2015 06:37:39 -0700 (PDT) Original-Received: by 10.28.170.17 with HTTP; Sat, 22 Aug 2015 06:37:39 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::22c X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:106769 Archived-At: Hi If I have a string of characters like this: 0102030405 I want to transform into: 01 02 03 04 05 How do I do that? Angus