This browser-based utility increases individual digits in the given integers. The integers can be embedded in any textual data and the utility will find them and update the digit values in-place. You can increase all digits of integers by the same amount or enter a pattern that will increase specific digit positions by specific amounts. You can also control the overflow by stopping at 9 or overflowing to 0 if the digit value gets larger than 9. Created by math nerds from team Browserling.
This browser-based utility increases individual digits in the given integers. The integers can be embedded in any textual data and the utility will find them and update the digit values in-place. You can increase all digits of integers by the same amount or enter a pattern that will increase specific digit positions by specific amounts. You can also control the overflow by stopping at 9 or overflowing to 0 if the digit value gets larger than 9. Created by math nerds from team Browserling.
With this online program, you can increase the value of all or some digits of an integer by the specified amount. In the input, you can enter any text data that contains integers. The program will extract the integer values, increase the digits in them, and put them back in the data in their original positions. We have implemented two methods for increasing integer digits. The first is to increase all digits at the same time by the same amount. To use this method, you need to select the "Increase All Digits" option and enter the addend value from 0 to 9 in the amount field below it. For example, if you enter the value "3", then the integer "12345" will turn into "45678". The second way to increase digits is to use a pattern with individual addends for each digit. To do this, select the "Increase Individual Digits" option and enter a multi-digit pattern in the field below. For example, the pattern "000123" will increase integer's ones by 3, tens by 2, hundreds by 1, and other digits will remain as they were. Additionally, you can control the digit overflow. As you know, digits go from 0 to 9. What happens when the incremented value is larger than 9? In this case, you can choose between two behaviors. The first one will overflow the digit to 0 if it gets larger than 9. For example, if the input is "45" and you increase both digits by "6", then the output will be "01" because 4+6 is 10 and 5+6 is 11 and only the last digit remains. The second one will stop the digits at 9 and no overflow will happen. For example, if the input is "45" and the digits are incremented by "6", then the output will be "99" because 4+6 is larger than 9, so it's capped at 9, and similarly 5+6 is larger than 9 and it stays at 9. Integerabulous!
With this online program, you can increase the value of all or some digits of an integer by the specified amount. In the input, you can enter any text data that contains integers. The program will extract the integer values, increase the digits in them, and put them back in the data in their original positions. We have implemented two methods for increasing integer digits. The first is to increase all digits at the same time by the same amount. To use this method, you need to select the "Increase All Digits" option and enter the addend value from 0 to 9 in the amount field below it. For example, if you enter the value "3", then the integer "12345" will turn into "45678". The second way to increase digits is to use a pattern with individual addends for each digit. To do this, select the "Increase Individual Digits" option and enter a multi-digit pattern in the field below. For example, the pattern "000123" will increase integer's ones by 3, tens by 2, hundreds by 1, and other digits will remain as they were. Additionally, you can control the digit overflow. As you know, digits go from 0 to 9. What happens when the incremented value is larger than 9? In this case, you can choose between two behaviors. The first one will overflow the digit to 0 if it gets larger than 9. For example, if the input is "45" and you increase both digits by "6", then the output will be "01" because 4+6 is 10 and 5+6 is 11 and only the last digit remains. The second one will stop the digits at 9 and no overflow will happen. For example, if the input is "45" and the digits are incremented by "6", then the output will be "99" because 4+6 is larger than 9, so it's capped at 9, and similarly 5+6 is larger than 9 and it stays at 9. Integerabulous!
In this example, we increment all integer digits by 2 and enable the "Increase All Digits" mode to apply this operation to all digits. We also select the "Overflow to Zero" mode, which means that if a digit exceeds the value of 9, then it turns into 0 and begins to increase again. Thus, the digit 7 turns into 9, digit 8 turns into 0, and digit 9 turns into 1.
This example uses the "Increase Individual Digits" mode and applies a unique increment pattern "010101" to the input integers. This pattern increases every odd digit of an integer by 1. As some of the digits are 9, then it uses the overflow option to make them smoothly increase from 9 to 0 when they overflow. It increments the digits in nine integers at once and returns them with the same delimiters that were used in the input.
In this example, a sales assistant got a new job in an online store and made a mistake when processing customer orders. She didn't know that because of a peculiarity in the sales system, every order number must begin with two nines. To quickly fix the problem, she used this program. She chose the "Increase Individual Digits" mode and entered the pattern "990000000" in the field below. This pattern increases only the first two digits by 9 and leaves the other digits unchanged. She also activated the "Stop at 9" option, so that the first two digits after incrementing didn't overflow to zero.
You can pass input to this tool via ?input query argument and it will automatically compute output. Here's how to type it in your browser's address bar. Click to try!
Create a drawing that visualizes von Neumann hierarchy of sets.
Create a sudoku puzzle.
Create a list of neat-looking integers (called magic integers).
Generate a list of tuples of integers with n elements.
Quickly convert integers to base one.
Quickly convert base one to integers.
Quickly convert integers to base two.
Quickly convert base two to integers.
Quickly convert integers to base eight.
Quickly convert base eight to integers.
Quickly convert integers to base sixteen.
Quickly convert base sixteen to integers.
Quickly encode integers to base-64.
Quickly decode base-64 to integers.
Quickly convert integers to a custom base.
Quickly encode integers to HTML encoding.
Quickly decode HTML entities to integers.
Quickly encode integers to URL (percent) encoding.
Quickly decode URL-encoded integers.
Quickly convert a signed integer to an unsigned integer.
Quickly convert an unsigned integer to a signed integer.
Generate a list of random integers.
Check if the given integers are palindromes.
Create a matrix whose entries are all integers.
Create a vector with integer coefficients.
Quickly calculate the average value of integers.
Quickly calculate the average value of integer digits.
Quickly randomly select a digit from an integer.
Find which of the given integers is the biggest or smallest.
Limit integer values to a range.
Limit integer digit values to a range.
Create multiple copies of the input integers.
Create multiple copies of digits of input integers.
Rotate the digits of an integer to the left or right.
Move the digits of an integer to the left or right.
Quickly find the difference of a bunch of integers.
Quickly apply the bitwise AND operation to integers.
Quickly apply the bitwise OR operation to integers.
Quickly apply the bitwise XOR operation to integers.
Quickly apply the bitwise NOT operation to integers.
Quickly apply the bitwise NAND operation to integers.
Quickly apply the bitwise NOR operation to integers.
Quickly apply the bitwise NXOR operation to integers.
Quickly divide two or more integers.
Quickly divide the digits of an integer.
Add -st, -nd, -rd, -th suffixes to integers to make them ordinals.
Remove -st, -nd, -rd, -th suffixes from ordinals to make them ints.
Find integers that match a filter (greater, less, equal).
Add padding to integers on the left side.
Add padding to integers on the right side.
Position all integers so that they align on the right.
Position all integers so that they align in the middle.
Turn all integers into positive integers.
Turn all integers into negative integers.
Rewrite an integer in fractional form.
Extract the numerator and denominator from a fraction.
Search for all occurrences of an integer and replace it.
Create a regex that matches the given integers.
Create integers that match the given regular expression.
Create relatively tiny integers.
Create relatively huge integers.
Create a sequence of oscillating integers, such as 123212321.
Create multiple integer sequences at once.
Slightly change an integer so it has an error.
Slightly change integer digits so there are errors.
Apply fuzzing to integers and add perturbations.
Apply fuzzing to integer digits and add digit perturbations.
Add highlighting to certain integers.
Add highlighting to certain integer digits.
Add color to integers based on a condition.
Add color to individual digits in the given integers.
Quickly assign colors to integers and draw them as pixels.
Quickly assign integer values to pixel colors and print them.
Make the digits of an integer go in a spiral shape.
Make the digits of an integer go in a circle.
Make the digits of an integer go in a diamond shape.
Fill a box with certain width and height with digits.
Use ASCII art to convert integers to 2-dimensional drawings.
Use ASCII art to convert integers to 3-dimensional drawings.
Decompose an integer into ones, tens, hundreds, etc.
Generate an ordered list of increasing integers.
Generate an ordered list of decreasing integers.
Quickly find various information about the given integers.
Find hidden patterns of numbers in integers.
Find the Shannon entropy of an integer.
Subscribe to our updates. We'll let you know when we release new tools, features, and organize online workshops.
Enter your email here
We're Browserling — a friendly and fun cross-browser testing company powered by alien technology. At Browserling our mission is to make people's lives easier, so we created this collection of integer tools. Our tools have the simplest user interface that doesn't require advanced computer skills and they are used by millions of people every month. Our integer tools are actually powered by our programming tools that we created over the last couple of years. Check them out!