Unable to find specific Icons in flutter

I encounter this error “flutter material icons-the getter ‘currency_rupee’ isn’t defined for the type ‘Icons‘” when I try to add ‘currency_rupee’ in one of my mobile development. This can be fixed using below solutions, 1. Make sure to use latest flutter version Download later version of flutter from https://docs.flutter.dev/get-started/install and verify of your Icons.dart file […]

PDF Script Issues and Solutions

1. How to display alert popups in pdf script ? . Include this statement either in document level or field level script. This will popup alert box when we open or action on the fields. 2. How to get numbers with leading with 0 in pdf script ? This will get the value of ‘field_name’ […]

Java Regular Expressions – 4

Predefined Character Classes This is shorthand of Character Classes. Instead of mentioning the character range, we will mention the predefined type of the character. Construct Description . Any character (may or may not match line terminators) \d A digit: [0-9] \D A non-digit: [^0-9] \s A whitespace character: [ \t\n\x0B\f\r] \S A non-whitespace character: [^\s] \w A word character: [a-zA-Z_0-9] […]

Java Regular Expressions – 3

Character Classes If we browse through java regular expressions, we immediately find a table summarizing regular expression constructs. Yes, that’s what we are going to see here. In below table, the left-hand column specifies the regular expression constructs, while the right-hand column describes the conditions under which each construct will match. Construct Description [abc] a, […]

Java Regular Expressions – 2

String Literals The most basic form of pattern matching is form of String matching. The pattern here is nothing but a simple string search we want to perform on the given input string. From here, let’s take String replace method which accepts a regularExpression and replacementString as arguments. Metacharacters These are the special characters that […]

Java Regular Expressions – 1

What is Java Regular Expressions? From Oracle, it says “Regular expressions are a way to describe a set of strings based on common characteristics shared by each string in the set.” In order to define that common characteristics, we prepare a sequence of characters called ‘Pattern’. These patterns can be used to search, edit, or […]